aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/common.css
diff options
context:
space:
mode:
Diffstat (limited to 'examples/common.css')
-rw-r--r--examples/common.css150
1 files changed, 0 insertions, 150 deletions
diff --git a/examples/common.css b/examples/common.css
deleted file mode 100644
index 5e4ced9..0000000
--- a/examples/common.css
+++ /dev/null
@@ -1,150 +0,0 @@
1.rc-time-picker {
2 display: inline-block;
3 box-sizing: border-box;
4}
5.rc-time-picker * {
6 box-sizing: border-box;
7}
8.rc-time-picker-input {
9 width: 100%;
10 position: relative;
11 display: inline-block;
12 padding: 4px 7px;
13 height: 28px;
14 cursor: text;
15 font-size: 12px;
16 line-height: 1.5;
17 color: #666;
18 background-color: #fff;
19 background-image: none;
20 border: 1px solid #d9d9d9;
21 border-radius: 6px;
22 -webkit-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 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);
24}
25.rc-time-picker-panel {
26 z-index: 1070;
27 width: 170px;
28 position: absolute;
29 box-sizing: border-box;
30}
31.rc-time-picker-panel * {
32 box-sizing: border-box;
33}
34.rc-time-picker-panel-inner {
35 display: inline-block;
36 position: relative;
37 outline: none;
38 list-style: none;
39 font-size: 12px;
40 text-align: left;
41 background-color: #fff;
42 border-radius: 3px;
43 box-shadow: 0 1px 5px #ccc;
44 background-clip: padding-box;
45 border: 1px solid #ccc;
46 line-height: 1.5;
47}
48.rc-time-picker-panel-input {
49 margin: 0;
50 padding: 0;
51 width: 100%;
52 cursor: auto;
53 line-height: 1.5;
54 outline: 0;
55 border: 1px solid transparent;
56}
57.rc-time-picker-panel-input-wrap {
58 box-sizing: border-box;
59 position: relative;
60 padding: 6px;
61 border-bottom: 1px solid #e9e9e9;
62}
63.rc-time-picker-panel-input-invalid {
64 border-color: red;
65}
66.rc-time-picker-panel-clear-btn {
67 position: absolute;
68 right: 6px;
69 cursor: pointer;
70 overflow: hidden;
71 width: 20px;
72 height: 20px;
73 text-align: center;
74 line-height: 20px;
75 top: 6px;
76 margin: 0;
77}
78.rc-time-picker-panel-clear-btn:after {
79 content: "x";
80 font-size: 12px;
81 color: #aaa;
82 display: inline-block;
83 line-height: 1;
84 width: 20px;
85 -webkit-transition: color 0.3s ease;
86 transition: color 0.3s ease;
87}
88.rc-time-picker-panel-clear-btn:hover:after {
89 color: #666;
90}
91.rc-time-picker-panel-select {
92 float: left;
93 font-size: 12px;
94 border: 1px solid #e9e9e9;
95 border-width: 0 1px;
96 margin-left: -1px;
97 box-sizing: border-box;
98 width: 56px;
99 overflow: hidden;
100 position: relative;
101}
102.rc-time-picker-panel-select-active {
103 overflow-y: auto;
104}
105.rc-time-picker-panel-select:first-child {
106 border-left: 0;
107 margin-left: 0;
108}
109.rc-time-picker-panel-select:last-child {
110 border-right: 0;
111}
112.rc-time-picker-panel-select ul {
113 list-style: none;
114 box-sizing: border-box;
115 margin: 0;
116 padding: 0;
117 width: 100%;
118 max-height: 144px;
119}
120.rc-time-picker-panel-select li {
121 list-style: none;
122 box-sizing: content-box;
123 margin: 0;
124 padding: 0 0 0 16px;
125 width: 100%;
126 height: 24px;
127 line-height: 24px;
128 text-align: left;
129 cursor: pointer;
130 -webkit-user-select: none;
131 -moz-user-select: none;
132 -ms-user-select: none;
133 user-select: none;
134}
135.rc-time-picker-panel-select li:hover {
136 background: #edfaff;
137}
138li.rc-time-picker-panel-select-option-selected {
139 background: #edfaff;
140 color: #2db7f5;
141}
142li.rc-time-picker-panel-select-option-disabled {
143 color: #bfbfbf;
144}
145li.rc-time-picker-panel-select-option-disabled:hover {
146 background: transparent;
147 cursor: not-allowed;
148}
149
150/*# sourceMappingURL=common.css.map*/ \ No newline at end of file