PluginProbe
VikBooking Hotel Booking Engine & PMS / trunk
VikBooking Hotel Booking Engine & PMS vtrunk
1.8.14 1.8.13 1.8.12 1.8.11 1.8.10 1.8.9 1.8.6 1.8.7 1.8.8 trunk 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 All 35 releases
vikbooking / admin / resources / css / system.css

system.css in VikBooking Hotel Booking Engine & PMS trunk, at admin/resources/css/system.css

118 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* required */
2
3 label.invalid,
4 b.invalid {
5 color: #9d261d;
6 }
7 input.invalid {
8 border: 1px solid #9d261d;
9 background: #f2dede;
10 }
11
12 /* system messages */
13
14 .notice.no-decoration {
15 padding: 0;
16 margin: 0;
17 border: 0;
18 background: none;
19 box-shadow: none;
20 }
21
22 .notice.activate-success {
23 background: #dff0d8;
24 border: 2px solid #56b360;
25 color: #3c763d;
26 box-shadow: none;
27 }
28
29 #adminForm table[align="center"] {
30 display: block;
31 float: right;
32 }
33
34 .tablenav input[type="search"] {
35 float: left;
36 height: 28px;
37 margin: 0 4px 0 0;
38 }
39
40 .acl-rule-allowed,
41 .acl-rule-denied {
42 color: #fff;
43 border-radius: 3px;
44 padding: 2px 6px;
45 font-weight: bold;
46 font-size: 12px;
47 line-height: 32px;
48 }
49
50 .acl-rule-allowed {
51 background: #3c763d;
52 }
53
54 .acl-rule-denied {
55 background: #a94442;
56 }
57
58 /* Yes-No buttons */
59
60 .switch-field {
61 font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
62 padding: 2px;
63 overflow: hidden;
64 display: inline-block;
65 }
66 .switch-title {
67 margin-bottom: 6px;
68 }
69 .switch-field input {
70 position: absolute !important;
71 clip: rect(0, 0, 0, 0);
72 height: 1px;
73 width: 1px;
74 border: 0;
75 overflow: hidden;
76 }
77 .switch-field label {
78 float: left;
79 }
80 .switch-field label {
81 display: inline-block;
82 width: 60px;
83 background-color: #e4e4e4;
84 color: rgba(0, 0, 0, 0.6);
85 font-size: 14px;
86 font-weight: normal;
87 text-align: center;
88 text-shadow: none;
89 padding: 6px 14px;
90 border: 1px solid rgba(0, 0, 0, 0.2);
91 -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
92 box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
93 -webkit-transition: all 0.1s ease-in-out;
94 -moz-transition: all 0.1s ease-in-out;
95 -ms-transition: all 0.1s ease-in-out;
96 -o-transition: all 0.1s ease-in-out;
97 transition: all 0.1s ease-in-out;
98 }
99 .switch-field label:hover {
100 cursor: pointer;
101 }
102 .switch-field input:checked + label {
103 -webkit-box-shadow: none;
104 box-shadow: none;
105 color: #fff;
106 }
107 .switch-field input:checked + label.button-yes {
108 background-color: #2f6f2f;
109 }
110 .switch-field input:checked + label.button-no {
111 background-color: #802420;
112 }
113 .switch-field label:first-of-type {
114 border-radius: 4px 0 0 4px;
115 }
116 .switch-field label:last-of-type {
117 border-radius: 0 4px 4px 0;
118 }