diff options
Diffstat (limited to 'common.css')
-rw-r--r-- | common.css | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -18,9 +18,14 @@ | |||
18 | background-color: #fff; | 18 | background-color: #fff; |
19 | background-image: none; | 19 | background-image: none; |
20 | border: 1px solid #d9d9d9; | 20 | border: 1px solid #d9d9d9; |
21 | border-radius: 6px; | 21 | border-radius: 4px; |
22 | transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); | 22 | transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); |
23 | } | 23 | } |
24 | .rc-time-picker-input[disabled] { | ||
25 | color: #ccc; | ||
26 | background: #f7f7f7; | ||
27 | cursor: not-allowed; | ||
28 | } | ||
24 | .rc-time-picker-panel { | 29 | .rc-time-picker-panel { |
25 | z-index: 1070; | 30 | z-index: 1070; |
26 | width: 170px; | 31 | width: 170px; |
@@ -94,7 +99,8 @@ | |||
94 | margin-left: -1px; | 99 | margin-left: -1px; |
95 | box-sizing: border-box; | 100 | box-sizing: border-box; |
96 | width: 56px; | 101 | width: 56px; |
97 | overflow: hidden; | 102 | max-height: 144px; |
103 | overflow-y: auto; | ||
98 | position: relative; | 104 | position: relative; |
99 | } | 105 | } |
100 | .rc-time-picker-panel-select-active { | 106 | .rc-time-picker-panel-select-active { |
@@ -113,7 +119,6 @@ | |||
113 | margin: 0; | 119 | margin: 0; |
114 | padding: 0; | 120 | padding: 0; |
115 | width: 100%; | 121 | width: 100%; |
116 | max-height: 144px; | ||
117 | } | 122 | } |
118 | .rc-time-picker-panel-select li { | 123 | .rc-time-picker-panel-select li { |
119 | list-style: none; | 124 | list-style: none; |
@@ -134,11 +139,11 @@ | |||
134 | background: #edfaff; | 139 | background: #edfaff; |
135 | } | 140 | } |
136 | li.rc-time-picker-panel-select-option-selected { | 141 | li.rc-time-picker-panel-select-option-selected { |
137 | background: #edfaff; | 142 | background: #f7f7f7; |
138 | color: #2db7f5; | 143 | font-weight: bold; |
139 | } | 144 | } |
140 | li.rc-time-picker-panel-select-option-disabled { | 145 | li.rc-time-picker-panel-select-option-disabled { |
141 | color: #bfbfbf; | 146 | color: #ccc; |
142 | } | 147 | } |
143 | li.rc-time-picker-panel-select-option-disabled:hover { | 148 | li.rc-time-picker-panel-select-option-disabled:hover { |
144 | background: transparent; | 149 | background: transparent; |