smart_admin 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +0 -0
- data/Rakefile +34 -0
- data/app/assets/images/landing/avatar1.jpg +0 -0
- data/app/assets/images/landing/avatar2.jpg +0 -0
- data/app/assets/images/landing/avatar3.jpg +0 -0
- data/app/assets/images/landing/avatar4.jpg +0 -0
- data/app/assets/images/landing/avatar5.jpg +0 -0
- data/app/assets/images/landing/avatar6.jpg +0 -0
- data/app/assets/images/landing/avatar7.jpg +0 -0
- data/app/assets/images/landing/avatar8.jpg +0 -0
- data/app/assets/images/landing/avatar9.jpg +0 -0
- data/app/assets/images/landing/avatar_all.png +0 -0
- data/app/assets/images/landing/dashboard.png +0 -0
- data/app/assets/images/landing/header_one.jpg +0 -0
- data/app/assets/images/landing/header_two.jpg +0 -0
- data/app/assets/images/landing/iphone.jpg +0 -0
- data/app/assets/images/landing/laptop.png +0 -0
- data/app/assets/images/landing/perspective.png +0 -0
- data/app/assets/images/landing/shattered.png +0 -0
- data/app/assets/images/landing/word_map.png +0 -0
- data/app/assets/images/patterns/header-profile-skin-1.png +0 -0
- data/app/assets/images/patterns/header-profile-skin-2.png +0 -0
- data/app/assets/images/patterns/header-profile-skin-3.png +0 -0
- data/app/assets/images/patterns/header-profile.png +0 -0
- data/app/assets/images/patterns/otis_redding.png +0 -0
- data/app/assets/images/patterns/shattered.png +0 -0
- data/app/assets/javascripts/inspinia.js +270 -0
- data/app/assets/javascripts/smart_admin.js +9 -0
- data/app/assets/stylesheets/smart_admin.scss +6 -0
- data/app/assets/stylesheets/smart_admin/base/badgets_labels.scss +66 -0
- data/app/assets/stylesheets/smart_admin/base/base.scss +1298 -0
- data/app/assets/stylesheets/smart_admin/base/buttons.scss +306 -0
- data/app/assets/stylesheets/smart_admin/base/chat.scss +126 -0
- data/app/assets/stylesheets/smart_admin/base/custom.scss +14 -0
- data/app/assets/stylesheets/smart_admin/base/elements.scss +2341 -0
- data/app/assets/stylesheets/smart_admin/base/landing.scss +636 -0
- data/app/assets/stylesheets/smart_admin/base/md-skin.scss +388 -0
- data/app/assets/stylesheets/smart_admin/base/media.scss +103 -0
- data/app/assets/stylesheets/smart_admin/base/metismenu.scss +81 -0
- data/app/assets/stylesheets/smart_admin/base/mixins.scss +0 -0
- data/app/assets/stylesheets/smart_admin/base/navigation.scss +501 -0
- data/app/assets/stylesheets/smart_admin/base/pages.scss +1318 -0
- data/app/assets/stylesheets/smart_admin/base/rtl.scss +267 -0
- data/app/assets/stylesheets/smart_admin/base/sidebar.scss +201 -0
- data/app/assets/stylesheets/smart_admin/base/skins.scss +460 -0
- data/app/assets/stylesheets/smart_admin/base/spinners.scss +760 -0
- data/app/assets/stylesheets/smart_admin/base/theme-config.scss +111 -0
- data/app/assets/stylesheets/smart_admin/base/top_navigation.scss +128 -0
- data/app/assets/stylesheets/smart_admin/base/typography.scss +32 -0
- data/app/assets/stylesheets/smart_admin/base/variables.scss +41 -0
- data/app/assets/stylesheets/smart_admin/style.scss +51 -0
- data/lib/generators/smart_admin/install_generator.rb +32 -0
- data/lib/generators/smart_admin/smart_admin_generator.rb +0 -0
- data/lib/generators/smart_admin/templates/assets/admin.js +1 -0
- data/lib/generators/smart_admin/templates/assets/admin.scss +3 -0
- data/lib/generators/smart_admin/templates/controllers/base_controller.rb +3 -0
- data/lib/generators/smart_admin/templates/controllers/dashboards_controller.rb +6 -0
- data/lib/generators/smart_admin/templates/views/admin/dashboards/index.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_flash.html.erb +10 -0
- data/lib/generators/smart_admin/templates/views/layouts/_footer.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_navigation.html.haml +32 -0
- data/lib/generators/smart_admin/templates/views/layouts/_rightsidebar.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_skinconfig.html.haml +0 -0
- data/lib/generators/smart_admin/templates/views/layouts/_topnavbar.html.haml +9 -0
- data/lib/generators/smart_admin/templates/views/layouts/admin.html.haml +20 -0
- data/lib/smart_admin.rb +6 -0
- data/lib/smart_admin/engine.rb +4 -0
- data/lib/smart_admin/version.rb +3 -0
- data/lib/tasks/smart_admin_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/log/development.log +58 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/smart_admin_test.rb +7 -0
- data/test/test_helper.rb +20 -0
- metadata +285 -0
@@ -0,0 +1,306 @@
|
|
1
|
+
.btn {
|
2
|
+
border-radius: $btn-border-radius;
|
3
|
+
}
|
4
|
+
|
5
|
+
.float-e-margins .btn {
|
6
|
+
margin-bottom: 5px;
|
7
|
+
}
|
8
|
+
|
9
|
+
.btn-w-m {
|
10
|
+
min-width: 120px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.btn-primary.btn-outline {
|
14
|
+
color: $navy;
|
15
|
+
}
|
16
|
+
|
17
|
+
.btn-success.btn-outline {
|
18
|
+
color: $blue;
|
19
|
+
}
|
20
|
+
|
21
|
+
.btn-info.btn-outline {
|
22
|
+
color: $lazur;
|
23
|
+
}
|
24
|
+
|
25
|
+
.btn-warning.btn-outline {
|
26
|
+
color: $yellow;
|
27
|
+
}
|
28
|
+
|
29
|
+
.btn-danger.btn-outline {
|
30
|
+
color: $red;
|
31
|
+
}
|
32
|
+
|
33
|
+
.btn-primary.btn-outline:hover,
|
34
|
+
.btn-success.btn-outline:hover,
|
35
|
+
.btn-info.btn-outline:hover,
|
36
|
+
.btn-warning.btn-outline:hover,
|
37
|
+
.btn-danger.btn-outline:hover {
|
38
|
+
color: white;
|
39
|
+
}
|
40
|
+
|
41
|
+
.btn-primary {
|
42
|
+
background-color: $navy;
|
43
|
+
border-color: $navy;
|
44
|
+
color: white;
|
45
|
+
}
|
46
|
+
|
47
|
+
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary.active:hover, .btn-primary.active:focus {
|
48
|
+
background-color: darken($navy, 3%);
|
49
|
+
border-color: darken($navy, 3%);
|
50
|
+
color: white;
|
51
|
+
}
|
52
|
+
|
53
|
+
.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
|
54
|
+
background-image: none;
|
55
|
+
}
|
56
|
+
|
57
|
+
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
|
58
|
+
background-color: lighten($navy, 4%);
|
59
|
+
border-color: lighten($navy, 4%);
|
60
|
+
}
|
61
|
+
|
62
|
+
.btn-success {
|
63
|
+
background-color: $blue;
|
64
|
+
border-color: $blue;
|
65
|
+
color: white;
|
66
|
+
}
|
67
|
+
|
68
|
+
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success, .btn-success:active:focus, .btn-success:active:hover, .btn-success.active:hover, .btn-success.active:focus {
|
69
|
+
background-color: darken($blue, 3%);
|
70
|
+
border-color: darken($blue, 3%);
|
71
|
+
color: white;
|
72
|
+
}
|
73
|
+
|
74
|
+
.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
|
75
|
+
background-image: none;
|
76
|
+
}
|
77
|
+
|
78
|
+
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success.active[disabled], fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
|
79
|
+
background-color: lighten($blue, 4%);
|
80
|
+
border-color: lighten($blue, 4%);
|
81
|
+
}
|
82
|
+
|
83
|
+
.btn-info {
|
84
|
+
background-color: $lazur;
|
85
|
+
border-color: $lazur;
|
86
|
+
color: white;
|
87
|
+
}
|
88
|
+
|
89
|
+
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info, .btn-info:active:focus, .btn-info:active:hover, .btn-info.active:hover, .btn-info.active:focus {
|
90
|
+
background-color: darken($lazur, 3%);
|
91
|
+
border-color: darken($lazur, 3%);
|
92
|
+
color: white;
|
93
|
+
}
|
94
|
+
|
95
|
+
.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
|
96
|
+
background-image: none;
|
97
|
+
}
|
98
|
+
|
99
|
+
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info.active[disabled], fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
|
100
|
+
background-color: lighten($lazur, 4%);
|
101
|
+
border-color: lighten($lazur, 4%);
|
102
|
+
}
|
103
|
+
|
104
|
+
.btn-default {
|
105
|
+
background-color: $dark-gray;
|
106
|
+
border-color: $dark-gray;
|
107
|
+
color: white;
|
108
|
+
}
|
109
|
+
|
110
|
+
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default, .btn-default:active:focus, .btn-default:active:hover, .btn-default.active:hover, .btn-default.active:focus {
|
111
|
+
background-color: darken($dark-gray, 3%);
|
112
|
+
border-color: darken($dark-gray, 3%);
|
113
|
+
color: white;
|
114
|
+
}
|
115
|
+
|
116
|
+
.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
|
117
|
+
background-image: none;
|
118
|
+
}
|
119
|
+
|
120
|
+
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default.active[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
|
121
|
+
background-color: lighten($dark-gray, 4%);
|
122
|
+
border-color: lighten($dark-gray, 4%);
|
123
|
+
}
|
124
|
+
|
125
|
+
.btn-warning {
|
126
|
+
background-color: $yellow;
|
127
|
+
border-color: $yellow;
|
128
|
+
color: white;
|
129
|
+
}
|
130
|
+
|
131
|
+
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning, .btn-warning:active:focus, .btn-warning:active:hover, .btn-warning.active:hover, .btn-warning.active:focus {
|
132
|
+
background-color: darken($yellow, 3%);
|
133
|
+
border-color: darken($yellow, 3%);
|
134
|
+
color: white;
|
135
|
+
}
|
136
|
+
|
137
|
+
.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
|
138
|
+
background-image: none;
|
139
|
+
}
|
140
|
+
|
141
|
+
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning.active[disabled], fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
|
142
|
+
background-color: lighten($yellow, 4%);
|
143
|
+
border-color: lighten($yellow, 4%);
|
144
|
+
}
|
145
|
+
|
146
|
+
.btn-danger {
|
147
|
+
background-color: $red;
|
148
|
+
border-color: $red;
|
149
|
+
color: white;
|
150
|
+
}
|
151
|
+
|
152
|
+
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger, .btn-danger:active:focus, .btn-danger:active:hover, .btn-danger.active:hover, .btn-danger.active:focus {
|
153
|
+
background-color: darken($red, 3%);
|
154
|
+
border-color: darken($red, 3%);
|
155
|
+
color: white;
|
156
|
+
}
|
157
|
+
|
158
|
+
.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
|
159
|
+
background-image: none;
|
160
|
+
}
|
161
|
+
|
162
|
+
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger.active[disabled], fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
|
163
|
+
background-color: lighten($red, 4%);
|
164
|
+
border-color: lighten($red, 4%);
|
165
|
+
}
|
166
|
+
|
167
|
+
.btn-link {
|
168
|
+
color: inherit;
|
169
|
+
}
|
170
|
+
|
171
|
+
.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {
|
172
|
+
color: $navy;
|
173
|
+
text-decoration: none;
|
174
|
+
}
|
175
|
+
|
176
|
+
.btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {
|
177
|
+
background-image: none;
|
178
|
+
}
|
179
|
+
|
180
|
+
.btn-link.disabled, .btn-link.disabled:hover, .btn-link.disabled:focus, .btn-link.disabled:active, .btn-link.disabled.active, .btn-link[disabled], .btn-link[disabled]:hover, .btn-link[disabled]:focus, .btn-link[disabled]:active, .btn-link.active[disabled], fieldset[disabled] .btn-link, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:active, fieldset[disabled] .btn-link.active {
|
181
|
+
color: #cacaca;
|
182
|
+
}
|
183
|
+
|
184
|
+
.btn-white {
|
185
|
+
color: inherit;
|
186
|
+
background: white;
|
187
|
+
border: 1px solid $border-color;
|
188
|
+
}
|
189
|
+
|
190
|
+
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white, .btn-white:active:focus, .btn-white:active:hover, .btn-white.active:hover, .btn-white.active:focus{
|
191
|
+
color: inherit;
|
192
|
+
border: 1px solid #d2d2d2;
|
193
|
+
}
|
194
|
+
|
195
|
+
.btn-white:active, .btn-white.active {
|
196
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
197
|
+
}
|
198
|
+
|
199
|
+
.btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {
|
200
|
+
background-image: none;
|
201
|
+
}
|
202
|
+
|
203
|
+
.btn-white.disabled, .btn-white.disabled:hover, .btn-white.disabled:focus, .btn-white.disabled:active, .btn-white.disabled.active, .btn-white[disabled], .btn-white[disabled]:hover, .btn-white[disabled]:focus, .btn-white[disabled]:active, .btn-white.active[disabled], fieldset[disabled] .btn-white, fieldset[disabled] .btn-white:hover, fieldset[disabled] .btn-white:focus, fieldset[disabled] .btn-white:active, fieldset[disabled] .btn-white.active {
|
204
|
+
color: #cacaca;
|
205
|
+
}
|
206
|
+
|
207
|
+
.form-control, .form-control:focus, .has-error .form-control:focus, .has-success .form-control:focus, .has-warning .form-control:focus, .navbar-collapse, .navbar-form, .navbar-form-custom .form-control:focus, .navbar-form-custom .form-control:hover, .open .btn.dropdown-toggle, .panel, .popover, .progress, .progress-bar {
|
208
|
+
box-shadow: none;
|
209
|
+
}
|
210
|
+
|
211
|
+
.btn-outline {
|
212
|
+
color: inherit;
|
213
|
+
background-color: transparent;
|
214
|
+
transition: all 0.5s;
|
215
|
+
}
|
216
|
+
|
217
|
+
.btn-rounded {
|
218
|
+
border-radius: 50px;
|
219
|
+
}
|
220
|
+
|
221
|
+
.btn-large-dim {
|
222
|
+
width: 90px;
|
223
|
+
height: 90px;
|
224
|
+
font-size: 42px;
|
225
|
+
}
|
226
|
+
|
227
|
+
button.dim {
|
228
|
+
display: inline-block;
|
229
|
+
color: white;
|
230
|
+
text-decoration: none;
|
231
|
+
text-transform: uppercase;
|
232
|
+
text-align: center;
|
233
|
+
padding-top: 6px;
|
234
|
+
margin-right: 10px;
|
235
|
+
position: relative;
|
236
|
+
cursor: pointer;
|
237
|
+
border-radius: 5px;
|
238
|
+
font-weight: 600;
|
239
|
+
margin-bottom: 20px !important;
|
240
|
+
}
|
241
|
+
|
242
|
+
button.dim:active {
|
243
|
+
top: 3px;
|
244
|
+
}
|
245
|
+
|
246
|
+
button.btn-primary.dim {
|
247
|
+
box-shadow: inset 0px 0px 0px darken($navy, 6%), 0px 5px 0px 0px darken($navy, 6%), 0px 10px 5px #999999;
|
248
|
+
}
|
249
|
+
|
250
|
+
button.btn-primary.dim:active {
|
251
|
+
box-shadow: inset 0px 0px 0px darken($navy, 6%), 0px 2px 0px 0px darken($navy, 6%), 0px 5px 3px #999999;
|
252
|
+
}
|
253
|
+
|
254
|
+
button.btn-default.dim {
|
255
|
+
box-shadow: inset 0px 0px 0px darken($dark-gray, 6%), 0px 5px 0px 0px darken($dark-gray, 6%), 0px 10px 5px #999999;
|
256
|
+
}
|
257
|
+
|
258
|
+
button.btn-default.dim:active {
|
259
|
+
box-shadow: inset 0px 0px 0px darken($dark-gray, 6%), 0px 2px 0px 0px darken($dark-gray, 6%), 0px 5px 3px #999999;
|
260
|
+
}
|
261
|
+
|
262
|
+
button.btn-warning.dim {
|
263
|
+
box-shadow: inset 0px 0px 0px darken($yellow, 6%), 0px 5px 0px 0px darken($yellow, 6%), 0px 10px 5px #999999;
|
264
|
+
}
|
265
|
+
|
266
|
+
button.btn-warning.dim:active {
|
267
|
+
box-shadow: inset 0px 0px 0px darken($yellow, 6%), 0px 2px 0px 0px darken($yellow, 6%), 0px 5px 3px #999999;
|
268
|
+
}
|
269
|
+
|
270
|
+
button.btn-info.dim {
|
271
|
+
box-shadow: inset 0px 0px 0px darken($lazur, 6%), 0px 5px 0px 0px darken($lazur, 6%), 0px 10px 5px #999999;
|
272
|
+
}
|
273
|
+
|
274
|
+
button.btn-info.dim:active {
|
275
|
+
box-shadow: inset 0px 0px 0px darken($lazur, 6%), 0px 2px 0px 0px darken($lazur, 6%), 0px 5px 3px #999999;
|
276
|
+
}
|
277
|
+
|
278
|
+
button.btn-success.dim {
|
279
|
+
box-shadow: inset 0px 0px 0px darken($blue, 6%), 0px 5px 0px 0px darken($blue, 6%), 0px 10px 5px #999999;
|
280
|
+
}
|
281
|
+
|
282
|
+
button.btn-success.dim:active {
|
283
|
+
box-shadow: inset 0px 0px 0px darken($blue, 6%), 0px 2px 0px 0px darken($blue, 6%), 0px 5px 3px #999999;
|
284
|
+
}
|
285
|
+
|
286
|
+
button.btn-danger.dim {
|
287
|
+
box-shadow: inset 0px 0px 0px darken($red, 6%), 0px 5px 0px 0px darken($red, 6%), 0px 10px 5px #999999;
|
288
|
+
}
|
289
|
+
|
290
|
+
button.btn-danger.dim:active {
|
291
|
+
box-shadow: inset 0px 0px 0px darken($red, 6%), 0px 2px 0px 0px darken($red, 6%), 0px 5px 3px #999999;
|
292
|
+
}
|
293
|
+
|
294
|
+
button.dim:before {
|
295
|
+
font-size: 50px;
|
296
|
+
line-height: 1em;
|
297
|
+
font-weight: normal;
|
298
|
+
color: white;
|
299
|
+
display: block;
|
300
|
+
padding-top: 10px;
|
301
|
+
}
|
302
|
+
|
303
|
+
button.dim:active:before {
|
304
|
+
top: 7px;
|
305
|
+
font-size: 50px;
|
306
|
+
}
|
@@ -0,0 +1,126 @@
|
|
1
|
+
#small-chat {
|
2
|
+
position: fixed;
|
3
|
+
bottom: 20px;
|
4
|
+
right: 20px;
|
5
|
+
z-index: 100;
|
6
|
+
}
|
7
|
+
|
8
|
+
#small-chat .badge {
|
9
|
+
position: absolute;
|
10
|
+
top: -3px;
|
11
|
+
right: -4px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.open-small-chat {
|
15
|
+
height: 38px;
|
16
|
+
width: 38px;
|
17
|
+
display: block;
|
18
|
+
background: #1ab394;
|
19
|
+
padding: 9px 8px;
|
20
|
+
text-align: center;
|
21
|
+
color: #fff;
|
22
|
+
border-radius: 50%;
|
23
|
+
}
|
24
|
+
|
25
|
+
.open-small-chat:hover {
|
26
|
+
color: white;
|
27
|
+
background: #1ab394;
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
.small-chat-box {
|
32
|
+
display: none;
|
33
|
+
position: fixed;
|
34
|
+
bottom: 20px;
|
35
|
+
right: 75px;
|
36
|
+
background: #fff;
|
37
|
+
border: 1px solid $border-color;
|
38
|
+
width: 230px;
|
39
|
+
height: 320px;
|
40
|
+
border-radius: 4px;
|
41
|
+
}
|
42
|
+
|
43
|
+
.small-chat-box.ng-small-chat {
|
44
|
+
display: block;
|
45
|
+
}
|
46
|
+
|
47
|
+
.body-small {
|
48
|
+
.small-chat-box {
|
49
|
+
bottom: 70px;
|
50
|
+
right: 20px;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
.small-chat-box.active {
|
55
|
+
display: block;
|
56
|
+
}
|
57
|
+
|
58
|
+
.small-chat-box {
|
59
|
+
|
60
|
+
.heading {
|
61
|
+
background: $nav-bg;
|
62
|
+
padding: 8px 15px;
|
63
|
+
font-weight: bold;
|
64
|
+
color: #fff;
|
65
|
+
}
|
66
|
+
|
67
|
+
.chat-date {
|
68
|
+
opacity: 0.6;
|
69
|
+
font-size: 10px;
|
70
|
+
font-weight: normal;
|
71
|
+
}
|
72
|
+
|
73
|
+
.content {
|
74
|
+
padding: 15px 15px;
|
75
|
+
|
76
|
+
.author-name {
|
77
|
+
font-weight: bold;
|
78
|
+
margin-bottom: 3px;
|
79
|
+
font-size: 11px;
|
80
|
+
}
|
81
|
+
|
82
|
+
> div {
|
83
|
+
padding-bottom: 20px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.chat-message {
|
87
|
+
padding: 5px 10px;
|
88
|
+
border-radius: 6px;
|
89
|
+
font-size: 11px;
|
90
|
+
line-height: 14px;
|
91
|
+
max-width: 80%;
|
92
|
+
background: #f3f3f4;
|
93
|
+
margin-bottom: 10px;
|
94
|
+
}
|
95
|
+
|
96
|
+
.chat-message.active {
|
97
|
+
background: #1ab394;
|
98
|
+
color: #fff;
|
99
|
+
}
|
100
|
+
|
101
|
+
.left {
|
102
|
+
text-align: left;
|
103
|
+
clear: both;
|
104
|
+
|
105
|
+
.chat-message {
|
106
|
+
float: left;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
.right {
|
111
|
+
text-align: right;
|
112
|
+
clear: both;
|
113
|
+
|
114
|
+
.chat-message {
|
115
|
+
float: right;
|
116
|
+
}
|
117
|
+
|
118
|
+
}
|
119
|
+
|
120
|
+
}
|
121
|
+
|
122
|
+
.form-chat {
|
123
|
+
padding: 10px 10px;
|
124
|
+
}
|
125
|
+
|
126
|
+
}
|
@@ -0,0 +1,2341 @@
|
|
1
|
+
/* TOOGLE SWICH */
|
2
|
+
|
3
|
+
.onoffswitch {
|
4
|
+
position: relative;
|
5
|
+
width: 64px;
|
6
|
+
-webkit-user-select: none;
|
7
|
+
-moz-user-select: none;
|
8
|
+
-ms-user-select: none;
|
9
|
+
}
|
10
|
+
|
11
|
+
.onoffswitch-checkbox {
|
12
|
+
display: none;
|
13
|
+
}
|
14
|
+
|
15
|
+
.onoffswitch-label {
|
16
|
+
display: block;
|
17
|
+
overflow: hidden;
|
18
|
+
cursor: pointer;
|
19
|
+
border: 2px solid $navy;
|
20
|
+
border-radius: 2px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.onoffswitch-inner {
|
24
|
+
width: 200%;
|
25
|
+
margin-left: -100%;
|
26
|
+
-moz-transition: margin 0.3s ease-in 0s;
|
27
|
+
-webkit-transition: margin 0.3s ease-in 0s;
|
28
|
+
-o-transition: margin 0.3s ease-in 0s;
|
29
|
+
transition: margin 0.3s ease-in 0s;
|
30
|
+
}
|
31
|
+
|
32
|
+
.onoffswitch-inner:before, .onoffswitch-inner:after {
|
33
|
+
float: left;
|
34
|
+
width: 50%;
|
35
|
+
height: 20px;
|
36
|
+
padding: 0;
|
37
|
+
line-height: 20px;
|
38
|
+
font-size: 12px;
|
39
|
+
color: white;
|
40
|
+
font-family: Trebuchet, Arial, sans-serif;
|
41
|
+
font-weight: bold;
|
42
|
+
-moz-box-sizing: border-box;
|
43
|
+
-webkit-box-sizing: border-box;
|
44
|
+
box-sizing: border-box;
|
45
|
+
}
|
46
|
+
|
47
|
+
.onoffswitch-inner:before {
|
48
|
+
content: "ON";
|
49
|
+
padding-left: 10px;
|
50
|
+
background-color: $navy;
|
51
|
+
color: white;
|
52
|
+
}
|
53
|
+
|
54
|
+
.onoffswitch-inner:after {
|
55
|
+
content: "OFF";
|
56
|
+
padding-right: 10px;
|
57
|
+
background-color: white;
|
58
|
+
color: #999999;
|
59
|
+
text-align: right;
|
60
|
+
}
|
61
|
+
|
62
|
+
.onoffswitch-switch {
|
63
|
+
width: 20px;
|
64
|
+
margin: 0px;
|
65
|
+
background: white;
|
66
|
+
border: 2px solid $navy;
|
67
|
+
border-radius: 2px;
|
68
|
+
position: absolute;
|
69
|
+
top: 0;
|
70
|
+
bottom: 0;
|
71
|
+
right: 44px;
|
72
|
+
-moz-transition: all 0.3s ease-in 0s;
|
73
|
+
-webkit-transition: all 0.3s ease-in 0s;
|
74
|
+
-o-transition: all 0.3s ease-in 0s;
|
75
|
+
transition: all 0.3s ease-in 0s;
|
76
|
+
}
|
77
|
+
|
78
|
+
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
|
79
|
+
margin-left: 0;
|
80
|
+
}
|
81
|
+
|
82
|
+
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
|
83
|
+
right: 0px;
|
84
|
+
}
|
85
|
+
|
86
|
+
/* CHOSEN PLUGIN */
|
87
|
+
|
88
|
+
.chosen-container-single .chosen-single {
|
89
|
+
background: white;
|
90
|
+
box-shadow: none;
|
91
|
+
-moz-box-sizing: border-box;
|
92
|
+
background-color: white;
|
93
|
+
border: 1px solid #cbd5dd;
|
94
|
+
border-radius: 2px;
|
95
|
+
cursor: text;
|
96
|
+
height: auto !important;
|
97
|
+
margin: 0;
|
98
|
+
min-height: 30px;
|
99
|
+
overflow: hidden;
|
100
|
+
padding: 4px 12px;
|
101
|
+
position: relative;
|
102
|
+
width: 100%;
|
103
|
+
}
|
104
|
+
|
105
|
+
.chosen-container-multi .chosen-choices li.search-choice {
|
106
|
+
background: #f1f1f1;
|
107
|
+
border: 1px solid #ededed;
|
108
|
+
border-radius: 2px;
|
109
|
+
box-shadow: none;
|
110
|
+
color: #333333;
|
111
|
+
cursor: default;
|
112
|
+
line-height: 13px;
|
113
|
+
margin: 3px 0 3px 5px;
|
114
|
+
padding: 3px 20px 3px 5px;
|
115
|
+
position: relative;
|
116
|
+
}
|
117
|
+
|
118
|
+
/* PAGINATIN */
|
119
|
+
|
120
|
+
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
|
121
|
+
background-color: #f4f4f4;
|
122
|
+
border-color: #dddddd;
|
123
|
+
color: inherit;
|
124
|
+
cursor: default;
|
125
|
+
z-index: 2;
|
126
|
+
}
|
127
|
+
|
128
|
+
.pagination > li > a, .pagination > li > span {
|
129
|
+
background-color: white;
|
130
|
+
border: 1px solid #dddddd;
|
131
|
+
color: inherit;
|
132
|
+
float: left;
|
133
|
+
line-height: 1.42857;
|
134
|
+
margin-left: -1px;
|
135
|
+
padding: 4px 10px;
|
136
|
+
position: relative;
|
137
|
+
text-decoration: none;
|
138
|
+
}
|
139
|
+
|
140
|
+
/* TOOLTIPS */
|
141
|
+
|
142
|
+
.tooltip-inner {
|
143
|
+
background-color: #2f4050;
|
144
|
+
}
|
145
|
+
|
146
|
+
.tooltip.top .tooltip-arrow {
|
147
|
+
border-top-color: #2f4050;
|
148
|
+
}
|
149
|
+
|
150
|
+
.tooltip.right .tooltip-arrow {
|
151
|
+
border-right-color: #2f4050;
|
152
|
+
}
|
153
|
+
|
154
|
+
.tooltip.bottom .tooltip-arrow {
|
155
|
+
border-bottom-color: #2f4050;
|
156
|
+
}
|
157
|
+
|
158
|
+
.tooltip.left .tooltip-arrow {
|
159
|
+
border-left-color: #2f4050;
|
160
|
+
}
|
161
|
+
|
162
|
+
/* EASY PIE CHART */
|
163
|
+
|
164
|
+
.easypiechart {
|
165
|
+
position: relative;
|
166
|
+
text-align: center;
|
167
|
+
}
|
168
|
+
|
169
|
+
.easypiechart .h2 {
|
170
|
+
margin-left: 10px;
|
171
|
+
margin-top: 10px;
|
172
|
+
display: inline-block;
|
173
|
+
}
|
174
|
+
|
175
|
+
.easypiechart canvas {
|
176
|
+
top: 0;
|
177
|
+
left: 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
.easypiechart .easypie-text {
|
181
|
+
line-height: 1;
|
182
|
+
position: absolute;
|
183
|
+
top: 33px;
|
184
|
+
width: 100%;
|
185
|
+
z-index: 1;
|
186
|
+
}
|
187
|
+
|
188
|
+
.easypiechart img {
|
189
|
+
margin-top: -4px;
|
190
|
+
}
|
191
|
+
|
192
|
+
.jqstooltip {
|
193
|
+
-webkit-box-sizing: content-box;
|
194
|
+
-moz-box-sizing: content-box;
|
195
|
+
box-sizing: content-box;
|
196
|
+
}
|
197
|
+
|
198
|
+
/* FULLCALENDAR */
|
199
|
+
|
200
|
+
.fc-state-default {
|
201
|
+
background-color: white;
|
202
|
+
background-image: none;
|
203
|
+
background-repeat: repeat-x;
|
204
|
+
box-shadow: none;
|
205
|
+
color: #333333;
|
206
|
+
text-shadow: none;
|
207
|
+
}
|
208
|
+
|
209
|
+
.fc-state-default {
|
210
|
+
border: 1px solid;
|
211
|
+
}
|
212
|
+
|
213
|
+
.fc-button {
|
214
|
+
color: inherit;
|
215
|
+
border: 1px solid $border-color;
|
216
|
+
cursor: pointer;
|
217
|
+
display: inline-block;
|
218
|
+
height: 1.9em;
|
219
|
+
line-height: 1.9em;
|
220
|
+
overflow: hidden;
|
221
|
+
padding: 0 0.6em;
|
222
|
+
position: relative;
|
223
|
+
white-space: nowrap;
|
224
|
+
}
|
225
|
+
|
226
|
+
.fc-state-active {
|
227
|
+
background-color: $navy;
|
228
|
+
border-color: $navy;
|
229
|
+
color: white;
|
230
|
+
}
|
231
|
+
|
232
|
+
.fc-header-title h2 {
|
233
|
+
font-size: 16px;
|
234
|
+
font-weight: 600;
|
235
|
+
color: inherit;
|
236
|
+
}
|
237
|
+
|
238
|
+
.fc-content .fc-widget-header, .fc-content .fc-widget-content {
|
239
|
+
border-color: $border-color;
|
240
|
+
font-weight: normal;
|
241
|
+
}
|
242
|
+
|
243
|
+
.fc-border-separate tbody {
|
244
|
+
background-color: #f8f8f8;
|
245
|
+
}
|
246
|
+
|
247
|
+
.fc-state-highlight {
|
248
|
+
background: none repeat scroll 0 0 #fcf8e3;
|
249
|
+
}
|
250
|
+
|
251
|
+
.external-event {
|
252
|
+
padding: 5px 10px;
|
253
|
+
border-radius: 2px;
|
254
|
+
cursor: pointer;
|
255
|
+
margin-bottom: 5px;
|
256
|
+
}
|
257
|
+
|
258
|
+
.fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start {
|
259
|
+
border-radius: 2px;
|
260
|
+
}
|
261
|
+
|
262
|
+
.fc-event,
|
263
|
+
.fc-agenda .fc-event-time,
|
264
|
+
.fc-event a {
|
265
|
+
padding: 4px 6px;
|
266
|
+
background-color: $navy;
|
267
|
+
border-color: $navy;
|
268
|
+
}
|
269
|
+
|
270
|
+
.fc-event-time, .fc-event-title {
|
271
|
+
color: #717171;
|
272
|
+
padding: 0 1px;
|
273
|
+
}
|
274
|
+
|
275
|
+
.ui-calendar .fc-event-time, .ui-calendar .fc-event-title {
|
276
|
+
color: white;
|
277
|
+
}
|
278
|
+
|
279
|
+
/* Chat */
|
280
|
+
.chat-activity-list .chat-element {
|
281
|
+
border-bottom: 1px solid $border-color;
|
282
|
+
}
|
283
|
+
|
284
|
+
.chat-element:first-child {
|
285
|
+
margin-top: 0;
|
286
|
+
}
|
287
|
+
|
288
|
+
.chat-element {
|
289
|
+
padding-bottom: 15px;
|
290
|
+
}
|
291
|
+
|
292
|
+
.chat-element, .chat-element .media {
|
293
|
+
margin-top: 15px;
|
294
|
+
}
|
295
|
+
|
296
|
+
.chat-element, .media-body {
|
297
|
+
overflow: hidden;
|
298
|
+
}
|
299
|
+
|
300
|
+
.chat-element .media-body {
|
301
|
+
display: block;
|
302
|
+
}
|
303
|
+
|
304
|
+
.media-body {
|
305
|
+
display: block;
|
306
|
+
}
|
307
|
+
|
308
|
+
.chat-element > .pull-left {
|
309
|
+
margin-right: 10px;
|
310
|
+
}
|
311
|
+
|
312
|
+
.chat-element img.img-circle, .dropdown-messages-box img.img-circle {
|
313
|
+
width: 38px;
|
314
|
+
height: 38px;
|
315
|
+
}
|
316
|
+
|
317
|
+
.chat-element .well {
|
318
|
+
border: 1px solid $border-color;
|
319
|
+
box-shadow: none;
|
320
|
+
margin-top: 10px;
|
321
|
+
margin-bottom: 5px;
|
322
|
+
padding: 10px 20px;
|
323
|
+
font-size: 11px;
|
324
|
+
line-height: 16px;
|
325
|
+
}
|
326
|
+
|
327
|
+
.chat-element .actions {
|
328
|
+
margin-top: 10px;
|
329
|
+
}
|
330
|
+
|
331
|
+
.chat-element .photos {
|
332
|
+
margin: 10px 0;
|
333
|
+
}
|
334
|
+
|
335
|
+
.right.chat-element > .pull-right {
|
336
|
+
margin-left: 10px;
|
337
|
+
}
|
338
|
+
|
339
|
+
.chat-photo {
|
340
|
+
max-height: 180px;
|
341
|
+
border-radius: 4px;
|
342
|
+
overflow: hidden;
|
343
|
+
margin-right: 10px;
|
344
|
+
margin-bottom: 10px;
|
345
|
+
}
|
346
|
+
|
347
|
+
.chat {
|
348
|
+
margin: 0;
|
349
|
+
padding: 0;
|
350
|
+
list-style: none;
|
351
|
+
}
|
352
|
+
|
353
|
+
.chat li {
|
354
|
+
margin-bottom: 10px;
|
355
|
+
padding-bottom: 5px;
|
356
|
+
border-bottom: 1px dotted #b3a9a9;
|
357
|
+
}
|
358
|
+
|
359
|
+
.chat li.left .chat-body {
|
360
|
+
margin-left: 60px;
|
361
|
+
}
|
362
|
+
|
363
|
+
.chat li.right .chat-body {
|
364
|
+
margin-right: 60px;
|
365
|
+
}
|
366
|
+
|
367
|
+
.chat li .chat-body p {
|
368
|
+
margin: 0;
|
369
|
+
color: #777777;
|
370
|
+
}
|
371
|
+
|
372
|
+
.panel .slidedown .glyphicon,
|
373
|
+
.chat .glyphicon {
|
374
|
+
margin-right: 5px;
|
375
|
+
}
|
376
|
+
|
377
|
+
.chat-panel .panel-body {
|
378
|
+
height: 350px;
|
379
|
+
overflow-y: scroll;
|
380
|
+
}
|
381
|
+
|
382
|
+
/* LIST GROUP */
|
383
|
+
|
384
|
+
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
|
385
|
+
background-color: $navy;
|
386
|
+
border-color: $navy;
|
387
|
+
color: white;
|
388
|
+
z-index: 2;
|
389
|
+
}
|
390
|
+
|
391
|
+
.list-group-item-heading {
|
392
|
+
margin-top: 10px;
|
393
|
+
}
|
394
|
+
|
395
|
+
.list-group-item-text {
|
396
|
+
margin: 0 0 10px;
|
397
|
+
color: inherit;
|
398
|
+
font-size: 12px;
|
399
|
+
line-height: inherit;
|
400
|
+
}
|
401
|
+
|
402
|
+
.no-padding .list-group-item {
|
403
|
+
border-left: none;
|
404
|
+
border-right: none;
|
405
|
+
border-bottom: none;
|
406
|
+
}
|
407
|
+
|
408
|
+
.no-padding .list-group-item:first-child {
|
409
|
+
border-left: none;
|
410
|
+
border-right: none;
|
411
|
+
border-bottom: none;
|
412
|
+
border-top: none;
|
413
|
+
}
|
414
|
+
|
415
|
+
.no-padding .list-group {
|
416
|
+
margin-bottom: 0;
|
417
|
+
}
|
418
|
+
|
419
|
+
.list-group-item {
|
420
|
+
background-color: inherit;
|
421
|
+
border: 1px solid $border-color;
|
422
|
+
display: block;
|
423
|
+
margin-bottom: -1px;
|
424
|
+
padding: 10px 15px;
|
425
|
+
position: relative;
|
426
|
+
}
|
427
|
+
|
428
|
+
.elements-list .list-group-item {
|
429
|
+
border-left: none;
|
430
|
+
border-right: none;
|
431
|
+
padding: 15px 25px;
|
432
|
+
|
433
|
+
}
|
434
|
+
|
435
|
+
.elements-list .list-group-item:first-child {
|
436
|
+
border-left: none;
|
437
|
+
border-right: none;
|
438
|
+
border-top: none !important;
|
439
|
+
}
|
440
|
+
|
441
|
+
.elements-list .list-group {
|
442
|
+
margin-bottom: 0;
|
443
|
+
}
|
444
|
+
|
445
|
+
.elements-list a {
|
446
|
+
color: inherit;
|
447
|
+
}
|
448
|
+
|
449
|
+
.elements-list .list-group-item.active,
|
450
|
+
.elements-list .list-group-item:hover {
|
451
|
+
background: $gray;
|
452
|
+
color: inherit;
|
453
|
+
border-color: $border-color;
|
454
|
+
border-radius: 0;
|
455
|
+
}
|
456
|
+
|
457
|
+
.elements-list li.active {
|
458
|
+
transition: none;
|
459
|
+
}
|
460
|
+
|
461
|
+
.element-detail-box {
|
462
|
+
padding: 25px;
|
463
|
+
}
|
464
|
+
|
465
|
+
|
466
|
+
/* FLOT CHART */
|
467
|
+
|
468
|
+
.flot-chart {
|
469
|
+
display: block;
|
470
|
+
height: 200px;
|
471
|
+
}
|
472
|
+
|
473
|
+
.widget .flot-chart.dashboard-chart {
|
474
|
+
display: block;
|
475
|
+
height: 120px;
|
476
|
+
margin-top: 40px;
|
477
|
+
}
|
478
|
+
|
479
|
+
.flot-chart.dashboard-chart {
|
480
|
+
display: block;
|
481
|
+
height: 180px;
|
482
|
+
margin-top: 40px;
|
483
|
+
}
|
484
|
+
|
485
|
+
.flot-chart-content {
|
486
|
+
width: 100%;
|
487
|
+
height: 100%;
|
488
|
+
}
|
489
|
+
|
490
|
+
.flot-chart-pie-content {
|
491
|
+
width: 200px;
|
492
|
+
height: 200px;
|
493
|
+
margin: auto;
|
494
|
+
}
|
495
|
+
|
496
|
+
.jqstooltip {
|
497
|
+
position: absolute;
|
498
|
+
display: block;
|
499
|
+
left: 0px;
|
500
|
+
top: 0px;
|
501
|
+
visibility: hidden;
|
502
|
+
background: rgb(43, 48, 58);
|
503
|
+
background-color: rgba(43, 48, 58, 0.8);
|
504
|
+
color: white;
|
505
|
+
text-align: left;
|
506
|
+
white-space: nowrap;
|
507
|
+
z-index: 10000;
|
508
|
+
padding: 5px 5px 5px 5px;
|
509
|
+
min-height: 22px;
|
510
|
+
border-radius: 3px;
|
511
|
+
}
|
512
|
+
|
513
|
+
.jqsfield {
|
514
|
+
color: white;
|
515
|
+
text-align: left;
|
516
|
+
}
|
517
|
+
|
518
|
+
.h-200 {
|
519
|
+
min-height: 200px;
|
520
|
+
}
|
521
|
+
|
522
|
+
.legendLabel {
|
523
|
+
padding-left: 5px;
|
524
|
+
}
|
525
|
+
|
526
|
+
.stat-list li:first-child {
|
527
|
+
margin-top: 0;
|
528
|
+
}
|
529
|
+
|
530
|
+
.stat-list {
|
531
|
+
list-style: none;
|
532
|
+
padding: 0;
|
533
|
+
margin: 0;
|
534
|
+
}
|
535
|
+
|
536
|
+
.stat-percent {
|
537
|
+
float: right;
|
538
|
+
}
|
539
|
+
|
540
|
+
.stat-list li {
|
541
|
+
margin-top: 15px;
|
542
|
+
position: relative;
|
543
|
+
}
|
544
|
+
|
545
|
+
/* DATATABLES */
|
546
|
+
|
547
|
+
|
548
|
+
table.dataTable thead .sorting,
|
549
|
+
table.dataTable thead .sorting_asc:after,
|
550
|
+
table.dataTable thead .sorting_desc,
|
551
|
+
table.dataTable thead .sorting_asc_disabled,
|
552
|
+
table.dataTable thead .sorting_desc_disabled {
|
553
|
+
background: transparent;
|
554
|
+
}
|
555
|
+
|
556
|
+
.dataTables_wrapper {
|
557
|
+
padding-bottom: 30px;
|
558
|
+
}
|
559
|
+
|
560
|
+
.dataTables_length {
|
561
|
+
float: left;
|
562
|
+
}
|
563
|
+
|
564
|
+
body.DTTT_Print {
|
565
|
+
background: #fff;
|
566
|
+
|
567
|
+
}
|
568
|
+
.DTTT_Print #page-wrapper {
|
569
|
+
margin: 0;
|
570
|
+
background:#fff;
|
571
|
+
}
|
572
|
+
|
573
|
+
button.DTTT_button, div.DTTT_button, a.DTTT_button {
|
574
|
+
border: 1px solid #e7eaec;
|
575
|
+
background: #fff;
|
576
|
+
color: #676a6c;
|
577
|
+
box-shadow: none;
|
578
|
+
padding: 6px 8px;
|
579
|
+
}
|
580
|
+
button.DTTT_button:hover, div.DTTT_button:hover, a.DTTT_button:hover {
|
581
|
+
border: 1px solid #d2d2d2;
|
582
|
+
background: #fff;
|
583
|
+
color: #676a6c;
|
584
|
+
box-shadow: none;
|
585
|
+
padding: 6px 8px;
|
586
|
+
}
|
587
|
+
|
588
|
+
button.DTTT_button:hover:not(.DTTT_disabled), div.DTTT_button:hover:not(.DTTT_disabled), a.DTTT_button:hover:not(.DTTT_disabled) {
|
589
|
+
border: 1px solid #d2d2d2;
|
590
|
+
background: #fff;
|
591
|
+
box-shadow: none;
|
592
|
+
}
|
593
|
+
|
594
|
+
.dataTables_filter label {
|
595
|
+
margin-right: 5px;
|
596
|
+
|
597
|
+
}
|
598
|
+
|
599
|
+
/* CIRCLE */
|
600
|
+
|
601
|
+
.img-circle {
|
602
|
+
border-radius: 50%;
|
603
|
+
}
|
604
|
+
|
605
|
+
.btn-circle {
|
606
|
+
width: 30px;
|
607
|
+
height: 30px;
|
608
|
+
padding: 6px 0;
|
609
|
+
border-radius: 15px;
|
610
|
+
text-align: center;
|
611
|
+
font-size: 12px;
|
612
|
+
line-height: 1.42857;
|
613
|
+
}
|
614
|
+
|
615
|
+
.btn-circle.btn-lg {
|
616
|
+
width: 50px;
|
617
|
+
height: 50px;
|
618
|
+
padding: 10px 16px;
|
619
|
+
border-radius: 25px;
|
620
|
+
font-size: 18px;
|
621
|
+
line-height: 1.33;
|
622
|
+
}
|
623
|
+
|
624
|
+
.btn-circle.btn-xl {
|
625
|
+
width: 70px;
|
626
|
+
height: 70px;
|
627
|
+
padding: 10px 16px;
|
628
|
+
border-radius: 35px;
|
629
|
+
font-size: 24px;
|
630
|
+
line-height: 1.33;
|
631
|
+
}
|
632
|
+
|
633
|
+
.show-grid [class^="col-"] {
|
634
|
+
padding-top: 10px;
|
635
|
+
padding-bottom: 10px;
|
636
|
+
border: 1px solid #dddddd;
|
637
|
+
background-color: #eeeeee !important;
|
638
|
+
}
|
639
|
+
|
640
|
+
.show-grid {
|
641
|
+
margin: 15px 0;
|
642
|
+
}
|
643
|
+
|
644
|
+
/* ANIMATION */
|
645
|
+
|
646
|
+
.css-animation-box h1 {
|
647
|
+
font-size: 44px;
|
648
|
+
}
|
649
|
+
|
650
|
+
.animation-efect-links a {
|
651
|
+
padding: 4px 6px;
|
652
|
+
font-size: 12px;
|
653
|
+
}
|
654
|
+
|
655
|
+
#animation_box {
|
656
|
+
background-color: #f9f8f8;
|
657
|
+
border-radius: 16px;
|
658
|
+
width: 80%;
|
659
|
+
margin: 0 auto;
|
660
|
+
padding-top: 80px;
|
661
|
+
}
|
662
|
+
|
663
|
+
.animation-text-box {
|
664
|
+
position: absolute;
|
665
|
+
margin-top: 40px;
|
666
|
+
left: 50%;
|
667
|
+
margin-left: -100px;
|
668
|
+
width: 200px;
|
669
|
+
}
|
670
|
+
|
671
|
+
.animation-text-info {
|
672
|
+
position: absolute;
|
673
|
+
margin-top: -60px;
|
674
|
+
left: 50%;
|
675
|
+
margin-left: -100px;
|
676
|
+
width: 200px;
|
677
|
+
font-size: 10px;
|
678
|
+
}
|
679
|
+
|
680
|
+
.animation-text-box h2 {
|
681
|
+
font-size: 54px;
|
682
|
+
font-weight: 600;
|
683
|
+
margin-bottom: 5px;
|
684
|
+
}
|
685
|
+
|
686
|
+
.animation-text-box p {
|
687
|
+
font-size: 12px;
|
688
|
+
text-transform: uppercase;
|
689
|
+
}
|
690
|
+
|
691
|
+
/* PEACE */
|
692
|
+
|
693
|
+
.pace {
|
694
|
+
-webkit-pointer-events: none;
|
695
|
+
pointer-events: none;
|
696
|
+
-webkit-user-select: none;
|
697
|
+
-moz-user-select: none;
|
698
|
+
user-select: none;
|
699
|
+
}
|
700
|
+
|
701
|
+
.pace-inactive {
|
702
|
+
display: none;
|
703
|
+
}
|
704
|
+
|
705
|
+
.pace .pace-progress {
|
706
|
+
background: $navy;
|
707
|
+
position: fixed;
|
708
|
+
z-index: 2000;
|
709
|
+
top: 0;
|
710
|
+
right: 100%;
|
711
|
+
width: 100%;
|
712
|
+
height: 2px;
|
713
|
+
}
|
714
|
+
|
715
|
+
.pace-inactive {
|
716
|
+
display: none;
|
717
|
+
}
|
718
|
+
|
719
|
+
/* WIDGETS */
|
720
|
+
|
721
|
+
.widget {
|
722
|
+
border-radius: 5px;
|
723
|
+
padding: 15px 20px;
|
724
|
+
margin-bottom: 10px;
|
725
|
+
margin-top: 10px;
|
726
|
+
}
|
727
|
+
|
728
|
+
.widget.style1 h2 {
|
729
|
+
font-size: 30px;
|
730
|
+
}
|
731
|
+
|
732
|
+
.widget h2, .widget h3 {
|
733
|
+
margin-top: 5px;
|
734
|
+
margin-bottom: 0;
|
735
|
+
}
|
736
|
+
|
737
|
+
.widget-text-box {
|
738
|
+
padding: 20px;
|
739
|
+
border: 1px solid $border-color;
|
740
|
+
background: white;
|
741
|
+
}
|
742
|
+
|
743
|
+
.widget-head-color-box {
|
744
|
+
border-radius: 5px 5px 0px 0px;
|
745
|
+
margin-top: 10px;
|
746
|
+
}
|
747
|
+
|
748
|
+
.widget .flot-chart {
|
749
|
+
height: 100px;
|
750
|
+
}
|
751
|
+
|
752
|
+
.vertical-align div {
|
753
|
+
display: inline-block;
|
754
|
+
vertical-align: middle;
|
755
|
+
}
|
756
|
+
|
757
|
+
.vertical-align h2, .vertical-align h3 {
|
758
|
+
margin: 0;
|
759
|
+
}
|
760
|
+
|
761
|
+
.todo-list {
|
762
|
+
list-style: none outside none;
|
763
|
+
margin: 0;
|
764
|
+
padding: 0;
|
765
|
+
font-size: 14px;
|
766
|
+
}
|
767
|
+
|
768
|
+
.todo-list.small-list {
|
769
|
+
font-size: 12px;
|
770
|
+
}
|
771
|
+
|
772
|
+
.todo-list.small-list > li {
|
773
|
+
background: $gray;
|
774
|
+
border-left: none;
|
775
|
+
border-right: none;
|
776
|
+
border-radius: 4px;
|
777
|
+
color: inherit;
|
778
|
+
margin-bottom: 2px;
|
779
|
+
padding: 6px 6px 6px 12px;
|
780
|
+
}
|
781
|
+
|
782
|
+
.todo-list.small-list .btn-xs, .todo-list.small-list .btn-group-xs > .btn {
|
783
|
+
border-radius: 5px;
|
784
|
+
font-size: 10px;
|
785
|
+
line-height: 1.5;
|
786
|
+
padding: 1px 2px 1px 5px;
|
787
|
+
}
|
788
|
+
|
789
|
+
.todo-list > li {
|
790
|
+
background: $gray;
|
791
|
+
border-left: 6px solid $border-color;
|
792
|
+
border-right: 6px solid $border-color;
|
793
|
+
border-radius: 4px;
|
794
|
+
color: inherit;
|
795
|
+
margin-bottom: 2px;
|
796
|
+
padding: 10px;
|
797
|
+
}
|
798
|
+
|
799
|
+
.todo-list .handle {
|
800
|
+
cursor: move;
|
801
|
+
display: inline-block;
|
802
|
+
font-size: 16px;
|
803
|
+
margin: 0 5px;
|
804
|
+
}
|
805
|
+
|
806
|
+
.todo-list > li .label {
|
807
|
+
font-size: 9px;
|
808
|
+
margin-left: 10px;
|
809
|
+
}
|
810
|
+
|
811
|
+
.check-link {
|
812
|
+
font-size: 16px;
|
813
|
+
}
|
814
|
+
|
815
|
+
.todo-completed {
|
816
|
+
text-decoration: line-through;
|
817
|
+
}
|
818
|
+
|
819
|
+
.geo-statistic h1 {
|
820
|
+
font-size: 36px;
|
821
|
+
margin-bottom: 0;
|
822
|
+
}
|
823
|
+
|
824
|
+
.glyphicon.fa {
|
825
|
+
font-family: "FontAwesome";
|
826
|
+
}
|
827
|
+
|
828
|
+
/* INPUTS */
|
829
|
+
.inline {
|
830
|
+
display: inline-block !important;
|
831
|
+
}
|
832
|
+
|
833
|
+
.input-s-sm {
|
834
|
+
width: 120px;
|
835
|
+
}
|
836
|
+
|
837
|
+
.input-s {
|
838
|
+
width: 200px;
|
839
|
+
}
|
840
|
+
|
841
|
+
.input-s-lg {
|
842
|
+
width: 250px;
|
843
|
+
}
|
844
|
+
|
845
|
+
.i-checks {
|
846
|
+
padding-left: 0;
|
847
|
+
}
|
848
|
+
|
849
|
+
.form-control, .single-line {
|
850
|
+
background-color: white;
|
851
|
+
background-image: none;
|
852
|
+
border: 1px solid #e5e6e7;
|
853
|
+
border-radius: 1px;
|
854
|
+
color: inherit;
|
855
|
+
display: block;
|
856
|
+
padding: 6px 12px;
|
857
|
+
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
858
|
+
width: 100%;
|
859
|
+
}
|
860
|
+
|
861
|
+
.form-control:focus, .single-line:focus {
|
862
|
+
border-color: $navy !important;
|
863
|
+
}
|
864
|
+
|
865
|
+
.has-success .form-control {
|
866
|
+
border-color: $navy;
|
867
|
+
}
|
868
|
+
|
869
|
+
.has-warning .form-control {
|
870
|
+
border-color: $yellow;
|
871
|
+
}
|
872
|
+
|
873
|
+
.has-error .form-control {
|
874
|
+
border-color: $red;
|
875
|
+
}
|
876
|
+
|
877
|
+
.has-success .control-label {
|
878
|
+
color: $navy;
|
879
|
+
}
|
880
|
+
|
881
|
+
.has-warning .control-label {
|
882
|
+
color: $yellow;
|
883
|
+
}
|
884
|
+
|
885
|
+
.has-error .control-label {
|
886
|
+
color: $red;
|
887
|
+
}
|
888
|
+
|
889
|
+
.input-group-addon {
|
890
|
+
background-color: white;
|
891
|
+
border: 1px solid #e5e6e7;
|
892
|
+
border-radius: 1px;
|
893
|
+
color: inherit;
|
894
|
+
font-size: 14px;
|
895
|
+
font-weight: 400;
|
896
|
+
line-height: 1;
|
897
|
+
padding: 6px 12px;
|
898
|
+
text-align: center;
|
899
|
+
}
|
900
|
+
|
901
|
+
.spinner-buttons.input-group-btn .btn-xs {
|
902
|
+
line-height: 1.13;
|
903
|
+
}
|
904
|
+
|
905
|
+
.spinner-buttons.input-group-btn {
|
906
|
+
width: 20%;
|
907
|
+
}
|
908
|
+
|
909
|
+
.noUi-connect {
|
910
|
+
background: none repeat scroll 0 0 $navy;
|
911
|
+
box-shadow: none;
|
912
|
+
}
|
913
|
+
|
914
|
+
.slider_red .noUi-connect {
|
915
|
+
background: none repeat scroll 0 0 $red;
|
916
|
+
box-shadow: none;
|
917
|
+
}
|
918
|
+
|
919
|
+
/* UI Sortable */
|
920
|
+
|
921
|
+
.ui-sortable .ibox-title {
|
922
|
+
cursor: move;
|
923
|
+
}
|
924
|
+
|
925
|
+
.ui-sortable-placeholder {
|
926
|
+
border: 1px dashed #cecece !important;
|
927
|
+
visibility: visible !important;
|
928
|
+
background: #e7eaec;
|
929
|
+
}
|
930
|
+
|
931
|
+
.ibox.ui-sortable-placeholder {
|
932
|
+
margin: 0px 0px 23px !important;
|
933
|
+
}
|
934
|
+
|
935
|
+
/* SWITCHES */
|
936
|
+
.onoffswitch {
|
937
|
+
position: relative;
|
938
|
+
width: 54px;
|
939
|
+
-webkit-user-select: none;
|
940
|
+
-moz-user-select: none;
|
941
|
+
-ms-user-select: none;
|
942
|
+
}
|
943
|
+
|
944
|
+
.onoffswitch-checkbox {
|
945
|
+
display: none;
|
946
|
+
}
|
947
|
+
|
948
|
+
.onoffswitch-label {
|
949
|
+
display: block;
|
950
|
+
overflow: hidden;
|
951
|
+
cursor: pointer;
|
952
|
+
border: 2px solid #1ab394;
|
953
|
+
border-radius: 3px;
|
954
|
+
}
|
955
|
+
|
956
|
+
.onoffswitch-inner {
|
957
|
+
display: block;
|
958
|
+
width: 200%;
|
959
|
+
margin-left: -100%;
|
960
|
+
-moz-transition: margin 0.3s ease-in 0s;
|
961
|
+
-webkit-transition: margin 0.3s ease-in 0s;
|
962
|
+
-o-transition: margin 0.3s ease-in 0s;
|
963
|
+
transition: margin 0.3s ease-in 0s;
|
964
|
+
}
|
965
|
+
|
966
|
+
.onoffswitch-inner:before, .onoffswitch-inner:after {
|
967
|
+
display: block;
|
968
|
+
float: left;
|
969
|
+
width: 50%;
|
970
|
+
height: 16px;
|
971
|
+
padding: 0;
|
972
|
+
line-height: 16px;
|
973
|
+
font-size: 10px;
|
974
|
+
color: white;
|
975
|
+
font-family: Trebuchet, Arial, sans-serif;
|
976
|
+
font-weight: bold;
|
977
|
+
-moz-box-sizing: border-box;
|
978
|
+
-webkit-box-sizing: border-box;
|
979
|
+
box-sizing: border-box;
|
980
|
+
}
|
981
|
+
|
982
|
+
.onoffswitch-inner:before {
|
983
|
+
content: "ON";
|
984
|
+
padding-left: 7px;
|
985
|
+
background-color: #1ab394;
|
986
|
+
color: white;
|
987
|
+
}
|
988
|
+
|
989
|
+
.onoffswitch-inner:after {
|
990
|
+
content: "OFF";
|
991
|
+
padding-right: 7px;
|
992
|
+
background-color: white;
|
993
|
+
color: #919191;
|
994
|
+
text-align: right;
|
995
|
+
}
|
996
|
+
|
997
|
+
.onoffswitch-switch {
|
998
|
+
display: block;
|
999
|
+
width: 18px;
|
1000
|
+
margin: 0px;
|
1001
|
+
background: white;
|
1002
|
+
border: 2px solid #1ab394;
|
1003
|
+
border-radius: 3px;
|
1004
|
+
position: absolute;
|
1005
|
+
top: 0;
|
1006
|
+
bottom: 0;
|
1007
|
+
right: 36px;
|
1008
|
+
-moz-transition: all 0.3s ease-in 0s;
|
1009
|
+
-webkit-transition: all 0.3s ease-in 0s;
|
1010
|
+
-o-transition: all 0.3s ease-in 0s;
|
1011
|
+
transition: all 0.3s ease-in 0s;
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
|
1015
|
+
margin-left: 0;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
|
1019
|
+
right: 0px;
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
/* jqGrid */
|
1023
|
+
|
1024
|
+
.ui-jqgrid {
|
1025
|
+
-moz-box-sizing: content-box;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
.ui-jqgrid-btable {
|
1029
|
+
border-collapse: separate;
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
.ui-jqgrid-htable {
|
1033
|
+
border-collapse: separate;
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
.ui-jqgrid-titlebar {
|
1037
|
+
height: 40px;
|
1038
|
+
line-height: 15px;
|
1039
|
+
color: #676a6c;
|
1040
|
+
background-color: #f9f9f9;
|
1041
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
.ui-jqgrid .ui-jqgrid-title {
|
1045
|
+
float: left;
|
1046
|
+
margin: 1.1em 1em 0.2em;
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.ui-jqgrid .ui-jqgrid-titlebar {
|
1050
|
+
position: relative;
|
1051
|
+
border-left: 0px solid;
|
1052
|
+
border-right: 0px solid;
|
1053
|
+
border-top: 0px solid;
|
1054
|
+
}
|
1055
|
+
|
1056
|
+
.ui-widget-header {
|
1057
|
+
background: none;
|
1058
|
+
background-image: none;
|
1059
|
+
background-color: #f5f5f6;
|
1060
|
+
text-transform: uppercase;
|
1061
|
+
border-top-left-radius: 0px;
|
1062
|
+
border-top-right-radius: 0px;
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
.ui-jqgrid tr.ui-row-ltr td {
|
1066
|
+
border-right-color: inherit;
|
1067
|
+
border-right-style: solid;
|
1068
|
+
border-right-width: 1px;
|
1069
|
+
text-align: left;
|
1070
|
+
border-color: #dddddd;
|
1071
|
+
background-color: inherit;
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
.ui-search-toolbar input[type="text"] {
|
1075
|
+
font-size: 12px;
|
1076
|
+
height: 15px;
|
1077
|
+
border: 1px solid #cccccc;
|
1078
|
+
border-radius: 0px;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
1082
|
+
background: #f9f9f9;
|
1083
|
+
border: 1px solid #dddddd;
|
1084
|
+
line-height: 15px;
|
1085
|
+
font-weight: bold;
|
1086
|
+
color: #676a6c;
|
1087
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
.ui-widget-content {
|
1091
|
+
box-sizing: content-box;
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
.ui-icon-triangle-1-n {
|
1095
|
+
background-position: 1px -16px;
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
.ui-jqgrid tr.ui-search-toolbar th {
|
1099
|
+
border-top-width: 0px !important;
|
1100
|
+
border-top-color: inherit !important;
|
1101
|
+
border-top-style: ridge !important;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
|
1105
|
+
background: whitesmoke;
|
1106
|
+
border-collapse: separate;
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
|
1110
|
+
background: #f2fbff;
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
|
1114
|
+
border: 1px solid #dddddd;
|
1115
|
+
background: white;
|
1116
|
+
font-weight: normal;
|
1117
|
+
color: #212121;
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
.ui-jqgrid .ui-pg-input {
|
1121
|
+
font-size: inherit;
|
1122
|
+
width: 50px;
|
1123
|
+
border: 1px solid #cccccc;
|
1124
|
+
height: 15px;
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.ui-jqgrid .ui-pg-selbox {
|
1128
|
+
display: block;
|
1129
|
+
font-size: 1em;
|
1130
|
+
height: 25px;
|
1131
|
+
line-height: 18px;
|
1132
|
+
margin: 0;
|
1133
|
+
width: auto;
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
.ui-jqgrid .ui-pager-control {
|
1137
|
+
position: relative;
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
.ui-jqgrid .ui-jqgrid-pager {
|
1141
|
+
height: 32px;
|
1142
|
+
position: relative;
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
.ui-pg-table .navtable .ui-corner-all {
|
1146
|
+
border-radius: 0px;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.ui-jqgrid .ui-pg-button:hover {
|
1150
|
+
padding: 1px;
|
1151
|
+
border: 0px;
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
.ui-jqgrid .loading {
|
1155
|
+
position: absolute;
|
1156
|
+
top: 45%;
|
1157
|
+
left: 45%;
|
1158
|
+
width: auto;
|
1159
|
+
height: auto;
|
1160
|
+
z-index: 101;
|
1161
|
+
padding: 6px;
|
1162
|
+
margin: 5px;
|
1163
|
+
text-align: center;
|
1164
|
+
font-weight: bold;
|
1165
|
+
display: none;
|
1166
|
+
border-width: 2px !important;
|
1167
|
+
font-size: 11px;
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
.ui-jqgrid .form-control {
|
1171
|
+
height: 10px;
|
1172
|
+
width: auto;
|
1173
|
+
display: inline;
|
1174
|
+
padding: 10px 12px;
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
.ui-jqgrid-pager {
|
1178
|
+
height: 32px;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
|
1182
|
+
border-top-left-radius: 0;
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
|
1186
|
+
border-top-right-radius: 0;
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
|
1190
|
+
border-bottom-left-radius: 0;
|
1191
|
+
}
|
1192
|
+
|
1193
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
|
1194
|
+
border-bottom-right-radius: 0;
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
.ui-widget-content {
|
1198
|
+
border: 1px solid #dddddd;
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
.ui-jqgrid .ui-jqgrid-titlebar {
|
1202
|
+
padding: 0;
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.ui-jqgrid .ui-jqgrid-titlebar {
|
1206
|
+
border-bottom: 1px solid #dddddd;
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
.ui-jqgrid tr.jqgrow td {
|
1210
|
+
padding: 6px;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
.ui-jqdialog .ui-jqdialog-titlebar {
|
1214
|
+
padding: 10px 10px;
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
.ui-jqdialog .ui-jqdialog-title {
|
1218
|
+
float: none !important;
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
.ui-jqdialog > .ui-resizable-se {
|
1222
|
+
position: absolute;
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
/* Nestable list */
|
1226
|
+
|
1227
|
+
.dd {
|
1228
|
+
position: relative;
|
1229
|
+
display: block;
|
1230
|
+
margin: 0;
|
1231
|
+
padding: 0;
|
1232
|
+
list-style: none;
|
1233
|
+
font-size: 13px;
|
1234
|
+
line-height: 20px;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.dd-list {
|
1238
|
+
display: block;
|
1239
|
+
position: relative;
|
1240
|
+
margin: 0;
|
1241
|
+
padding: 0;
|
1242
|
+
list-style: none;
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.dd-list .dd-list {
|
1246
|
+
padding-left: 30px;
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
.dd-collapsed .dd-list {
|
1250
|
+
display: none;
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
.dd-item,
|
1254
|
+
.dd-empty,
|
1255
|
+
.dd-placeholder {
|
1256
|
+
display: block;
|
1257
|
+
position: relative;
|
1258
|
+
margin: 0;
|
1259
|
+
padding: 0;
|
1260
|
+
min-height: 20px;
|
1261
|
+
font-size: 13px;
|
1262
|
+
line-height: 20px;
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.dd-handle {
|
1266
|
+
display: block;
|
1267
|
+
margin: 5px 0;
|
1268
|
+
padding: 5px 10px;
|
1269
|
+
color: #333333;
|
1270
|
+
text-decoration: none;
|
1271
|
+
border: 1px solid #e7eaec;
|
1272
|
+
background: whitesmoke;
|
1273
|
+
-webkit-border-radius: 3px;
|
1274
|
+
border-radius: 3px;
|
1275
|
+
box-sizing: border-box;
|
1276
|
+
-moz-box-sizing: border-box;
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.dd-handle span {
|
1280
|
+
font-weight: bold;
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.dd-handle:hover {
|
1284
|
+
background: #f0f0f0;
|
1285
|
+
cursor: pointer;
|
1286
|
+
font-weight: bold;
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.dd-item > button {
|
1290
|
+
display: block;
|
1291
|
+
position: relative;
|
1292
|
+
cursor: pointer;
|
1293
|
+
float: left;
|
1294
|
+
width: 25px;
|
1295
|
+
height: 20px;
|
1296
|
+
margin: 5px 0;
|
1297
|
+
padding: 0;
|
1298
|
+
text-indent: 100%;
|
1299
|
+
white-space: nowrap;
|
1300
|
+
overflow: hidden;
|
1301
|
+
border: 0;
|
1302
|
+
background: transparent;
|
1303
|
+
font-size: 12px;
|
1304
|
+
line-height: 1;
|
1305
|
+
text-align: center;
|
1306
|
+
font-weight: bold;
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.dd-item > button:before {
|
1310
|
+
content: "+";
|
1311
|
+
display: block;
|
1312
|
+
position: absolute;
|
1313
|
+
width: 100%;
|
1314
|
+
text-align: center;
|
1315
|
+
text-indent: 0;
|
1316
|
+
}
|
1317
|
+
|
1318
|
+
.dd-item > button[data-action="collapse"]:before {
|
1319
|
+
content: "-";
|
1320
|
+
}
|
1321
|
+
|
1322
|
+
#nestable2 .dd-item > button {
|
1323
|
+
font-family: FontAwesome;
|
1324
|
+
height: 34px;
|
1325
|
+
width: 33px;
|
1326
|
+
color: #c1c1c1;
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
#nestable2 .dd-item > button:before {
|
1330
|
+
content: "\f067";
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
#nestable2 .dd-item > button[data-action="collapse"]:before {
|
1334
|
+
content: "\f068";
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
.dd-placeholder,
|
1338
|
+
.dd-empty {
|
1339
|
+
margin: 5px 0;
|
1340
|
+
padding: 0;
|
1341
|
+
min-height: 30px;
|
1342
|
+
background: #f2fbff;
|
1343
|
+
border: 1px dashed #b6bcbf;
|
1344
|
+
box-sizing: border-box;
|
1345
|
+
-moz-box-sizing: border-box;
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
.dd-empty {
|
1349
|
+
border: 1px dashed #bbbbbb;
|
1350
|
+
min-height: 100px;
|
1351
|
+
background-color: #e5e5e5;
|
1352
|
+
background-image: -webkit-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), -webkit-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
|
1353
|
+
background-image: -moz-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), -moz-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
|
1354
|
+
background-image: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
|
1355
|
+
background-size: 60px 60px;
|
1356
|
+
background-position: 0 0, 30px 30px;
|
1357
|
+
}
|
1358
|
+
|
1359
|
+
.dd-dragel {
|
1360
|
+
position: absolute;
|
1361
|
+
z-index: 9999;
|
1362
|
+
pointer-events: none;
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
.dd-dragel > .dd-item .dd-handle {
|
1366
|
+
margin-top: 0;
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
.dd-dragel .dd-handle {
|
1370
|
+
-webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
|
1371
|
+
box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
|
1372
|
+
}
|
1373
|
+
|
1374
|
+
/* Nestable List */
|
1375
|
+
.nestable-lists {
|
1376
|
+
display: block;
|
1377
|
+
clear: both;
|
1378
|
+
padding: 30px 0;
|
1379
|
+
width: 100%;
|
1380
|
+
border: 0;
|
1381
|
+
border-top: 2px solid #dddddd;
|
1382
|
+
border-bottom: 2px solid #dddddd;
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
#nestable-menu {
|
1386
|
+
padding: 0;
|
1387
|
+
margin: 10px 0 20px 0;
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
#nestable-output,
|
1391
|
+
#nestable2-output {
|
1392
|
+
width: 100%;
|
1393
|
+
font-size: 0.75em;
|
1394
|
+
line-height: 1.33333em;
|
1395
|
+
font-family: open sans, lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
|
1396
|
+
padding: 5px;
|
1397
|
+
box-sizing: border-box;
|
1398
|
+
-moz-box-sizing: border-box;
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
#nestable2 .dd-handle {
|
1402
|
+
color: inherit;
|
1403
|
+
border: 1px dashed #e7eaec;
|
1404
|
+
background: #f3f3f4;
|
1405
|
+
padding: 10px;
|
1406
|
+
}
|
1407
|
+
|
1408
|
+
#nestable2 span.label {
|
1409
|
+
margin-right: 10px;
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
#nestable-output,
|
1413
|
+
#nestable2-output {
|
1414
|
+
font-size: 12px;
|
1415
|
+
padding: 25px;
|
1416
|
+
box-sizing: border-box;
|
1417
|
+
-moz-box-sizing: border-box;
|
1418
|
+
}
|
1419
|
+
|
1420
|
+
/* CodeMirror */
|
1421
|
+
.CodeMirror {
|
1422
|
+
border: 1px solid #eeeeee;
|
1423
|
+
height: auto;
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
.CodeMirror-scroll {
|
1427
|
+
overflow-y: hidden;
|
1428
|
+
overflow-x: auto;
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
/* Google Maps */
|
1432
|
+
.google-map {
|
1433
|
+
height: 300px;
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
/* Validation */
|
1437
|
+
label.error {
|
1438
|
+
color: #cc5965;
|
1439
|
+
display: inline-block;
|
1440
|
+
margin-left: 5px;
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.form-control.error {
|
1444
|
+
border: 1px dotted #cc5965;
|
1445
|
+
}
|
1446
|
+
|
1447
|
+
/* ngGrid */
|
1448
|
+
.gridStyle {
|
1449
|
+
border: 1px solid rgb(212, 212, 212);
|
1450
|
+
width: 100%;
|
1451
|
+
height: 400px;
|
1452
|
+
}
|
1453
|
+
|
1454
|
+
.gridStyle2 {
|
1455
|
+
border: 1px solid rgb(212, 212, 212);
|
1456
|
+
width: 500px;
|
1457
|
+
height: 300px;
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
.ngHeaderCell {
|
1461
|
+
border-right: none;
|
1462
|
+
border-bottom: 1px solid #e7eaec;
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
.ngCell {
|
1466
|
+
border-right: none;
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
.ngTopPanel {
|
1470
|
+
background: #f5f5f6;
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
.ngRow.even {
|
1474
|
+
background: #f9f9f9;
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
.ngRow.selected {
|
1478
|
+
background: #ebf2f1;
|
1479
|
+
}
|
1480
|
+
|
1481
|
+
.ngRow {
|
1482
|
+
border-bottom: 1px solid #e7eaec;
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
.ngCell {
|
1486
|
+
background-color: transparent;
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
.ngHeaderCell {
|
1490
|
+
border-right: none;
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
/* Toastr custom style */
|
1494
|
+
|
1495
|
+
#toast-container > .toast {
|
1496
|
+
background-image: none !important;
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
#toast-container > .toast:before {
|
1500
|
+
position: fixed;
|
1501
|
+
font-family: FontAwesome;
|
1502
|
+
font-size: 24px;
|
1503
|
+
line-height: 24px;
|
1504
|
+
float: left;
|
1505
|
+
color: #FFF;
|
1506
|
+
padding-right: 0.5em;
|
1507
|
+
margin: auto 0.5em auto -1.5em;
|
1508
|
+
}
|
1509
|
+
#toast-container > .toast-warning:before {
|
1510
|
+
content: "\f0e7";
|
1511
|
+
}
|
1512
|
+
#toast-container > .toast-error:before {
|
1513
|
+
content: "\f071";
|
1514
|
+
}
|
1515
|
+
#toast-container > .toast-info:before {
|
1516
|
+
content: "\f005";
|
1517
|
+
}
|
1518
|
+
#toast-container > .toast-success:before {
|
1519
|
+
content: "\f00C";
|
1520
|
+
}
|
1521
|
+
|
1522
|
+
#toast-container > div {
|
1523
|
+
-moz-box-shadow: 0 0 3px #999;
|
1524
|
+
-webkit-box-shadow: 0 0 3px #999;
|
1525
|
+
box-shadow: 0 0 3px #999;
|
1526
|
+
opacity: .9;
|
1527
|
+
-ms-filter: alpha(Opacity=90);
|
1528
|
+
filter: alpha(opacity=90)
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
#toast-container > :hover {
|
1532
|
+
-moz-box-shadow: 0 0 4px #999;
|
1533
|
+
-webkit-box-shadow: 0 0 4px #999;
|
1534
|
+
box-shadow: 0 0 4px #999;
|
1535
|
+
opacity: 1;
|
1536
|
+
-ms-filter: alpha(Opacity=100);
|
1537
|
+
filter: alpha(opacity=100);
|
1538
|
+
cursor: pointer
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
.toast {
|
1542
|
+
background-color: $navy
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
.toast-success {
|
1546
|
+
background-color: $navy
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
.toast-error {
|
1550
|
+
background-color: $red
|
1551
|
+
}
|
1552
|
+
|
1553
|
+
.toast-info {
|
1554
|
+
background-color: $lazur
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
.toast-warning {
|
1558
|
+
background-color: $yellow
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
.toast-top-full-width {
|
1562
|
+
margin-top: 20px;
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.toast-bottom-full-width {
|
1566
|
+
margin-bottom: 20px;
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
/* Notifie */
|
1570
|
+
.cg-notify-message.inspinia-notify {
|
1571
|
+
background: #fff;
|
1572
|
+
padding: 0;
|
1573
|
+
box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
|
1574
|
+
-webkit-box-shadow : 0 0 1 px rgba(0, 0, 0, 0.1), 0 2 px 4 px rgba(0, 0, 0, 0.2);
|
1575
|
+
-moz-box-shadow : 0 0 1 px rgba(0, 0, 0, 0.1), 0 2 px 4 px rgba(0, 0, 0, 0.2);
|
1576
|
+
border:none ;
|
1577
|
+
margin-top: 30px;
|
1578
|
+
color: inherit;
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
.inspinia-notify.alert-warning {
|
1582
|
+
border-left: 6px solid $yellow;
|
1583
|
+
}
|
1584
|
+
.inspinia-notify.alert-success {
|
1585
|
+
border-left: 6px solid $blue;
|
1586
|
+
}
|
1587
|
+
|
1588
|
+
.inspinia-notify.alert-danger {
|
1589
|
+
border-left: 6px solid $red;
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
.inspinia-notify.alert-info {
|
1593
|
+
border-left: 6px solid $navy;
|
1594
|
+
}
|
1595
|
+
|
1596
|
+
/* Image cropper style */
|
1597
|
+
.img-container, .img-preview {
|
1598
|
+
overflow: hidden;
|
1599
|
+
text-align: center;
|
1600
|
+
width: 100%;
|
1601
|
+
}
|
1602
|
+
.img-preview-sm {
|
1603
|
+
height: 130px;
|
1604
|
+
width: 200px;
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
/* Forum styles */
|
1608
|
+
.forum-post-container .media {
|
1609
|
+
margin: 10px 10px 10px 10px;
|
1610
|
+
padding: 20px 10px 20px 10px;
|
1611
|
+
border-bottom: 1px solid #f1f1f1;
|
1612
|
+
}
|
1613
|
+
|
1614
|
+
.forum-avatar {
|
1615
|
+
float: left;
|
1616
|
+
margin-right: 20px;
|
1617
|
+
text-align: center;
|
1618
|
+
width: 110px;
|
1619
|
+
}
|
1620
|
+
|
1621
|
+
.forum-avatar .img-circle {
|
1622
|
+
height: 48px;
|
1623
|
+
width: 48px;
|
1624
|
+
}
|
1625
|
+
|
1626
|
+
.author-info {
|
1627
|
+
color: #676a6c;
|
1628
|
+
font-size: 11px;
|
1629
|
+
margin-top: 5px;
|
1630
|
+
text-align: center;
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
.forum-post-info {
|
1634
|
+
padding: 9px 12px 6px 12px;
|
1635
|
+
background: #f9f9f9;
|
1636
|
+
border: 1px solid #f1f1f1;
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
.media-body > .media {
|
1640
|
+
background: #f9f9f9;
|
1641
|
+
border-radius: 3px;
|
1642
|
+
border: 1px solid #f1f1f1;
|
1643
|
+
}
|
1644
|
+
|
1645
|
+
.forum-post-container .media-body .photos {
|
1646
|
+
margin: 10px 0;
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
.forum-photo {
|
1650
|
+
max-width: 140px;
|
1651
|
+
border-radius: 3px;
|
1652
|
+
|
1653
|
+
}
|
1654
|
+
|
1655
|
+
.media-body > .media .forum-avatar {
|
1656
|
+
width: 70px;
|
1657
|
+
margin-right: 10px;
|
1658
|
+
}
|
1659
|
+
.media-body > .media .forum-avatar .img-circle {
|
1660
|
+
height: 38px;
|
1661
|
+
width: 38px;
|
1662
|
+
}
|
1663
|
+
|
1664
|
+
.mid-icon {
|
1665
|
+
font-size: 66px;
|
1666
|
+
}
|
1667
|
+
|
1668
|
+
.forum-item {
|
1669
|
+
margin: 10px 0;
|
1670
|
+
padding: 10px 0 20px;
|
1671
|
+
border-bottom: 1px solid #f1f1f1;
|
1672
|
+
}
|
1673
|
+
|
1674
|
+
.views-number {
|
1675
|
+
font-size: 24px;
|
1676
|
+
line-height: 18px;
|
1677
|
+
font-weight: 400;
|
1678
|
+
}
|
1679
|
+
|
1680
|
+
.forum-container, .forum-post-container {
|
1681
|
+
padding: 30px !important;
|
1682
|
+
}
|
1683
|
+
|
1684
|
+
.forum-item small {
|
1685
|
+
color: #999;
|
1686
|
+
}
|
1687
|
+
|
1688
|
+
.forum-item .forum-sub-title{
|
1689
|
+
color: #999;
|
1690
|
+
margin-left: 50px;
|
1691
|
+
}
|
1692
|
+
|
1693
|
+
.forum-title {
|
1694
|
+
margin: 15px 0 15px 0;
|
1695
|
+
}
|
1696
|
+
|
1697
|
+
.forum-info {
|
1698
|
+
text-align: center;
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
.forum-desc {
|
1702
|
+
color: #999;
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
.forum-icon {
|
1706
|
+
float: left;
|
1707
|
+
width: 30px;
|
1708
|
+
margin-right: 20px;
|
1709
|
+
text-align: center;
|
1710
|
+
}
|
1711
|
+
|
1712
|
+
a.forum-item-title {
|
1713
|
+
color: inherit;
|
1714
|
+
display: block;
|
1715
|
+
font-size: 18px;
|
1716
|
+
font-weight: 600;
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
a.forum-item-title:hover {
|
1720
|
+
color: inherit;
|
1721
|
+
}
|
1722
|
+
|
1723
|
+
.forum-icon .fa {
|
1724
|
+
|
1725
|
+
font-size: 30px;
|
1726
|
+
margin-top: 8px;
|
1727
|
+
color: #9b9b9b;
|
1728
|
+
}
|
1729
|
+
.forum-item.active .fa {
|
1730
|
+
color: $navy;
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
.forum-item.active a.forum-item-title {
|
1734
|
+
color: $navy;
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
@media (max-width: 992px) {
|
1738
|
+
|
1739
|
+
.forum-info {
|
1740
|
+
margin: 15px 0 10px 0px;
|
1741
|
+
|
1742
|
+
/* Comment this is you want to show forum info in small devices */
|
1743
|
+
display: none;
|
1744
|
+
}
|
1745
|
+
|
1746
|
+
.forum-desc {
|
1747
|
+
float: none !important;
|
1748
|
+
}
|
1749
|
+
|
1750
|
+
}
|
1751
|
+
|
1752
|
+
/* New Timeline style */
|
1753
|
+
|
1754
|
+
.vertical-container {
|
1755
|
+
/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
|
1756
|
+
width: 90%;
|
1757
|
+
max-width: 1170px;
|
1758
|
+
margin: 0 auto;
|
1759
|
+
}
|
1760
|
+
.vertical-container::after {
|
1761
|
+
/* clearfix */
|
1762
|
+
content: '';
|
1763
|
+
display: table;
|
1764
|
+
clear: both;
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
#vertical-timeline {
|
1768
|
+
position: relative;
|
1769
|
+
padding: 0;
|
1770
|
+
margin-top: 2em;
|
1771
|
+
margin-bottom: 2em;
|
1772
|
+
}
|
1773
|
+
#vertical-timeline::before {
|
1774
|
+
content: '';
|
1775
|
+
position: absolute;
|
1776
|
+
top: 0;
|
1777
|
+
left: 18px;
|
1778
|
+
height: 100%;
|
1779
|
+
width: 4px;
|
1780
|
+
background: #f1f1f1;
|
1781
|
+
}
|
1782
|
+
|
1783
|
+
|
1784
|
+
.vertical-timeline-content .btn {
|
1785
|
+
float: right;
|
1786
|
+
}
|
1787
|
+
|
1788
|
+
#vertical-timeline.light-timeline:before {
|
1789
|
+
background: #e7eaec;
|
1790
|
+
}
|
1791
|
+
|
1792
|
+
|
1793
|
+
.dark-timeline .vertical-timeline-content:before
|
1794
|
+
{
|
1795
|
+
border-color: transparent #f5f5f5 transparent transparent ;
|
1796
|
+
}
|
1797
|
+
|
1798
|
+
.dark-timeline.center-orientation .vertical-timeline-content:before
|
1799
|
+
{
|
1800
|
+
border-color: transparent transparent transparent #f5f5f5;
|
1801
|
+
}
|
1802
|
+
|
1803
|
+
.dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before,
|
1804
|
+
.dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before
|
1805
|
+
{
|
1806
|
+
border-color: transparent #f5f5f5 transparent transparent;
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
.dark-timeline .vertical-timeline-content,
|
1810
|
+
.dark-timeline.center-orientation .vertical-timeline-content
|
1811
|
+
{
|
1812
|
+
background: #f5f5f5;
|
1813
|
+
}
|
1814
|
+
|
1815
|
+
@media only screen and (min-width: 1170px) {
|
1816
|
+
#vertical-timeline.center-orientation {
|
1817
|
+
margin-top: 3em;
|
1818
|
+
margin-bottom: 3em;
|
1819
|
+
}
|
1820
|
+
#vertical-timeline.center-orientation:before {
|
1821
|
+
left: 50%;
|
1822
|
+
margin-left: -2px;
|
1823
|
+
}
|
1824
|
+
}
|
1825
|
+
|
1826
|
+
@media only screen and (max-width: 1170px) {
|
1827
|
+
.center-orientation.dark-timeline .vertical-timeline-content:before {
|
1828
|
+
border-color: transparent #f5f5f5 transparent transparent;
|
1829
|
+
}
|
1830
|
+
}
|
1831
|
+
|
1832
|
+
.vertical-timeline-block {
|
1833
|
+
position: relative;
|
1834
|
+
margin: 2em 0;
|
1835
|
+
}
|
1836
|
+
.vertical-timeline-block:after {
|
1837
|
+
content: "";
|
1838
|
+
display: table;
|
1839
|
+
clear: both;
|
1840
|
+
}
|
1841
|
+
.vertical-timeline-block:first-child {
|
1842
|
+
margin-top: 0;
|
1843
|
+
}
|
1844
|
+
.vertical-timeline-block:last-child {
|
1845
|
+
margin-bottom: 0;
|
1846
|
+
}
|
1847
|
+
@media only screen and (min-width: 1170px) {
|
1848
|
+
.center-orientation .vertical-timeline-block {
|
1849
|
+
margin: 4em 0;
|
1850
|
+
}
|
1851
|
+
.center-orientation .vertical-timeline-block:first-child {
|
1852
|
+
margin-top: 0;
|
1853
|
+
}
|
1854
|
+
.center-orientation .vertical-timeline-block:last-child {
|
1855
|
+
margin-bottom: 0;
|
1856
|
+
}
|
1857
|
+
}
|
1858
|
+
|
1859
|
+
.vertical-timeline-icon {
|
1860
|
+
position: absolute;
|
1861
|
+
top: 0;
|
1862
|
+
left: 0;
|
1863
|
+
width: 40px;
|
1864
|
+
height: 40px;
|
1865
|
+
border-radius: 50%;
|
1866
|
+
font-size: 16px;
|
1867
|
+
border: 3px solid #f1f1f1;
|
1868
|
+
text-align: center;
|
1869
|
+
}
|
1870
|
+
.vertical-timeline-icon i {
|
1871
|
+
display: block;
|
1872
|
+
width: 24px;
|
1873
|
+
height: 24px;
|
1874
|
+
position: relative;
|
1875
|
+
left: 50%;
|
1876
|
+
top: 50%;
|
1877
|
+
margin-left: -12px;
|
1878
|
+
margin-top: -9px;
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
@media only screen and (min-width: 1170px) {
|
1882
|
+
.center-orientation .vertical-timeline-icon {
|
1883
|
+
width: 50px;
|
1884
|
+
height: 50px;
|
1885
|
+
left: 50%;
|
1886
|
+
margin-left: -25px;
|
1887
|
+
-webkit-transform: translateZ(0);
|
1888
|
+
-webkit-backface-visibility: hidden;
|
1889
|
+
font-size: 19px;
|
1890
|
+
}
|
1891
|
+
.center-orientation .vertical-timeline-icon i {
|
1892
|
+
margin-left: -12px;
|
1893
|
+
margin-top: -10px;
|
1894
|
+
}
|
1895
|
+
.center-orientation .cssanimations .vertical-timeline-icon.is-hidden {
|
1896
|
+
visibility: hidden;
|
1897
|
+
}
|
1898
|
+
}
|
1899
|
+
|
1900
|
+
|
1901
|
+
.vertical-timeline-content {
|
1902
|
+
position: relative;
|
1903
|
+
margin-left: 60px;
|
1904
|
+
background: white;
|
1905
|
+
border-radius: 0.25em;
|
1906
|
+
padding: 1em;
|
1907
|
+
}
|
1908
|
+
.vertical-timeline-content:after {
|
1909
|
+
content: "";
|
1910
|
+
display: table;
|
1911
|
+
clear: both;
|
1912
|
+
}
|
1913
|
+
.vertical-timeline-content h2 {
|
1914
|
+
font-weight: 400;
|
1915
|
+
margin-top: 4px;
|
1916
|
+
}
|
1917
|
+
|
1918
|
+
|
1919
|
+
.vertical-timeline-content p {
|
1920
|
+
margin: 1em 0;
|
1921
|
+
line-height: 1.6;
|
1922
|
+
}
|
1923
|
+
|
1924
|
+
|
1925
|
+
.vertical-timeline-content .vertical-date {
|
1926
|
+
float: left;
|
1927
|
+
font-weight: 500;
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
.vertical-date small {
|
1931
|
+
color: $navy;
|
1932
|
+
font-weight: 400;
|
1933
|
+
}
|
1934
|
+
|
1935
|
+
.vertical-timeline-content::before {
|
1936
|
+
content: '';
|
1937
|
+
position: absolute;
|
1938
|
+
top: 16px;
|
1939
|
+
right: 100%;
|
1940
|
+
height: 0;
|
1941
|
+
width: 0;
|
1942
|
+
border: 7px solid transparent;
|
1943
|
+
border-right: 7px solid white;
|
1944
|
+
}
|
1945
|
+
@media only screen and (min-width: 768px) {
|
1946
|
+
.vertical-timeline-content h2 {
|
1947
|
+
font-size: 18px;
|
1948
|
+
}
|
1949
|
+
.vertical-timeline-content p {
|
1950
|
+
font-size: 13px;
|
1951
|
+
}
|
1952
|
+
|
1953
|
+
}
|
1954
|
+
@media only screen and (min-width: 1170px) {
|
1955
|
+
.center-orientation .vertical-timeline-content {
|
1956
|
+
margin-left: 0;
|
1957
|
+
padding: 1.6em;
|
1958
|
+
width: 45%;
|
1959
|
+
}
|
1960
|
+
.center-orientation .vertical-timeline-content::before {
|
1961
|
+
top: 24px;
|
1962
|
+
left: 100%;
|
1963
|
+
border-color: transparent;
|
1964
|
+
border-left-color: white;
|
1965
|
+
}
|
1966
|
+
|
1967
|
+
.center-orientation .vertical-timeline-content .btn {
|
1968
|
+
float: left;
|
1969
|
+
}
|
1970
|
+
.center-orientation .vertical-timeline-content .vertical-date {
|
1971
|
+
position: absolute;
|
1972
|
+
width: 100%;
|
1973
|
+
left: 122%;
|
1974
|
+
top: 2px;
|
1975
|
+
font-size: 14px;
|
1976
|
+
}
|
1977
|
+
.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {
|
1978
|
+
float: right;
|
1979
|
+
}
|
1980
|
+
.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {
|
1981
|
+
top: 24px;
|
1982
|
+
left: auto;
|
1983
|
+
right: 100%;
|
1984
|
+
border-color: transparent;
|
1985
|
+
border-right-color: white;
|
1986
|
+
}
|
1987
|
+
.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {
|
1988
|
+
float: right;
|
1989
|
+
}
|
1990
|
+
.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {
|
1991
|
+
left: auto;
|
1992
|
+
right: 122%;
|
1993
|
+
text-align: right;
|
1994
|
+
}
|
1995
|
+
.center-orientation .cssanimations .vertical-timeline-content.is-hidden {
|
1996
|
+
visibility: hidden;
|
1997
|
+
}
|
1998
|
+
}
|
1999
|
+
|
2000
|
+
|
2001
|
+
/* Tabs */
|
2002
|
+
|
2003
|
+
.tabs-container {
|
2004
|
+
|
2005
|
+
.panel-body {
|
2006
|
+
background: #fff;
|
2007
|
+
border: 1px solid $border-color;
|
2008
|
+
border-radius: 2px;
|
2009
|
+
padding: 20px;
|
2010
|
+
position: relative;
|
2011
|
+
}
|
2012
|
+
|
2013
|
+
.nav-tabs > li.active > a,
|
2014
|
+
.nav-tabs > li.active > a:hover,
|
2015
|
+
.nav-tabs > li.active > a:focus {
|
2016
|
+
border: 1px solid $border-color;
|
2017
|
+
border-bottom-color: transparent;
|
2018
|
+
background-color: #fff;
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
.nav-tabs > li {
|
2022
|
+
float: left;
|
2023
|
+
margin-bottom: -1px;
|
2024
|
+
}
|
2025
|
+
|
2026
|
+
.tab-pane .panel-body {
|
2027
|
+
border-top: none;
|
2028
|
+
}
|
2029
|
+
|
2030
|
+
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
|
2031
|
+
border: 1px solid $border-color;
|
2032
|
+
border-bottom-color: transparent;
|
2033
|
+
}
|
2034
|
+
|
2035
|
+
.nav-tabs {
|
2036
|
+
border-bottom: 1px solid $border-color;
|
2037
|
+
}
|
2038
|
+
|
2039
|
+
.tab-pane .panel-body {
|
2040
|
+
border-top: none;
|
2041
|
+
}
|
2042
|
+
|
2043
|
+
.tabs-left .tab-pane .panel-body, .tabs-right .tab-pane .panel-body {
|
2044
|
+
border-top: 1px solid $border-color;
|
2045
|
+
}
|
2046
|
+
|
2047
|
+
.nav-tabs > li a:hover {
|
2048
|
+
background: transparent;
|
2049
|
+
border-color: transparent;
|
2050
|
+
}
|
2051
|
+
|
2052
|
+
.tabs-below > .nav-tabs,
|
2053
|
+
.tabs-right > .nav-tabs,
|
2054
|
+
.tabs-left > .nav-tabs {
|
2055
|
+
border-bottom: 0;
|
2056
|
+
}
|
2057
|
+
|
2058
|
+
.tabs-left .panel-body {
|
2059
|
+
position: static;
|
2060
|
+
}
|
2061
|
+
|
2062
|
+
.tabs-left > .nav-tabs, .tabs-right > .nav-tabs {
|
2063
|
+
width: 20%;
|
2064
|
+
}
|
2065
|
+
|
2066
|
+
.tabs-left .panel-body {
|
2067
|
+
width: 80%;
|
2068
|
+
margin-left: 20%;
|
2069
|
+
}
|
2070
|
+
|
2071
|
+
.tabs-right .panel-body {
|
2072
|
+
width: 80%;
|
2073
|
+
margin-right: 20%;
|
2074
|
+
}
|
2075
|
+
|
2076
|
+
.tab-content > .tab-pane,
|
2077
|
+
.pill-content > .pill-pane {
|
2078
|
+
display: none;
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
.tab-content > .active,
|
2082
|
+
.pill-content > .active {
|
2083
|
+
display: block;
|
2084
|
+
}
|
2085
|
+
|
2086
|
+
.tabs-below > .nav-tabs {
|
2087
|
+
border-top: 1px solid $border-color;
|
2088
|
+
}
|
2089
|
+
|
2090
|
+
.tabs-below > .nav-tabs > li {
|
2091
|
+
margin-top: -1px;
|
2092
|
+
margin-bottom: 0;
|
2093
|
+
}
|
2094
|
+
|
2095
|
+
.tabs-below > .nav-tabs > li > a {
|
2096
|
+
-webkit-border-radius: 0 0 4px 4px;
|
2097
|
+
-moz-border-radius: 0 0 4px 4px;
|
2098
|
+
border-radius: 0 0 4px 4px;
|
2099
|
+
}
|
2100
|
+
|
2101
|
+
.tabs-below > .nav-tabs > li > a:hover,
|
2102
|
+
.tabs-below > .nav-tabs > li > a:focus {
|
2103
|
+
border-top-color: $border-color;
|
2104
|
+
border-bottom-color: transparent;
|
2105
|
+
}
|
2106
|
+
|
2107
|
+
|
2108
|
+
.tabs-left > .nav-tabs > li,
|
2109
|
+
.tabs-right > .nav-tabs > li {
|
2110
|
+
float: none;
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
.tabs-left > .nav-tabs > li > a,
|
2114
|
+
.tabs-right > .nav-tabs > li > a {
|
2115
|
+
min-width: 74px;
|
2116
|
+
margin-right: 0;
|
2117
|
+
margin-bottom: 3px;
|
2118
|
+
}
|
2119
|
+
|
2120
|
+
.tabs-left > .nav-tabs {
|
2121
|
+
float: left;
|
2122
|
+
margin-right: 19px;
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
.tabs-left > .nav-tabs > li > a {
|
2126
|
+
margin-right: -1px;
|
2127
|
+
-webkit-border-radius: 4px 0 0 4px;
|
2128
|
+
-moz-border-radius: 4px 0 0 4px;
|
2129
|
+
border-radius: 4px 0 0 4px;
|
2130
|
+
}
|
2131
|
+
|
2132
|
+
.tabs-left > .nav-tabs .active > a,
|
2133
|
+
.tabs-left > .nav-tabs .active > a:hover,
|
2134
|
+
.tabs-left > .nav-tabs .active > a:focus {
|
2135
|
+
border-color: $border-color transparent $border-color $border-color;
|
2136
|
+
*border-right-color: #ffffff;
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
.tabs-right > .nav-tabs {
|
2140
|
+
float: right;
|
2141
|
+
margin-left: 19px;
|
2142
|
+
}
|
2143
|
+
|
2144
|
+
.tabs-right > .nav-tabs > li > a {
|
2145
|
+
margin-left: -1px;
|
2146
|
+
-webkit-border-radius: 0 4px 4px 0;
|
2147
|
+
-moz-border-radius: 0 4px 4px 0;
|
2148
|
+
border-radius: 0 4px 4px 0;
|
2149
|
+
}
|
2150
|
+
|
2151
|
+
.tabs-right > .nav-tabs .active > a,
|
2152
|
+
.tabs-right > .nav-tabs .active > a:hover,
|
2153
|
+
.tabs-right > .nav-tabs .active > a:focus {
|
2154
|
+
border-color: $border-color $border-color $border-color transparent;
|
2155
|
+
*border-left-color: #ffffff;
|
2156
|
+
z-index: 1;
|
2157
|
+
}
|
2158
|
+
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
/* jsvectormap */
|
2162
|
+
.jvectormap-container {
|
2163
|
+
width: 100%;
|
2164
|
+
height: 100%;
|
2165
|
+
position: relative;
|
2166
|
+
overflow: hidden;
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
.jvectormap-tip {
|
2170
|
+
position: absolute;
|
2171
|
+
display: none;
|
2172
|
+
border: solid 1px #CDCDCD;
|
2173
|
+
border-radius: 3px;
|
2174
|
+
background: #292929;
|
2175
|
+
color: white;
|
2176
|
+
font-family: sans-serif, Verdana;
|
2177
|
+
font-size: smaller;
|
2178
|
+
padding: 5px;
|
2179
|
+
}
|
2180
|
+
|
2181
|
+
.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
|
2182
|
+
position: absolute;
|
2183
|
+
left: 10px;
|
2184
|
+
border-radius: 3px;
|
2185
|
+
background: $navy;
|
2186
|
+
padding: 3px;
|
2187
|
+
color: white;
|
2188
|
+
cursor: pointer;
|
2189
|
+
line-height: 10px;
|
2190
|
+
text-align: center;
|
2191
|
+
box-sizing: content-box;
|
2192
|
+
}
|
2193
|
+
|
2194
|
+
.jvectormap-zoomin, .jvectormap-zoomout {
|
2195
|
+
width: 10px;
|
2196
|
+
height: 10px;
|
2197
|
+
}
|
2198
|
+
|
2199
|
+
.jvectormap-zoomin {
|
2200
|
+
top: 10px;
|
2201
|
+
}
|
2202
|
+
|
2203
|
+
.jvectormap-zoomout {
|
2204
|
+
top: 30px;
|
2205
|
+
}
|
2206
|
+
|
2207
|
+
.jvectormap-goback {
|
2208
|
+
bottom: 10px;
|
2209
|
+
z-index: 1000;
|
2210
|
+
padding: 6px;
|
2211
|
+
}
|
2212
|
+
|
2213
|
+
.jvectormap-spinner {
|
2214
|
+
position: absolute;
|
2215
|
+
left: 0;
|
2216
|
+
top: 0;
|
2217
|
+
right: 0;
|
2218
|
+
bottom: 0;
|
2219
|
+
background: center no-repeat url(data:image/gif;base64,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);
|
2220
|
+
}
|
2221
|
+
|
2222
|
+
.jvectormap-legend-title {
|
2223
|
+
font-weight: bold;
|
2224
|
+
font-size: 14px;
|
2225
|
+
text-align: center;
|
2226
|
+
}
|
2227
|
+
|
2228
|
+
.jvectormap-legend-cnt {
|
2229
|
+
position: absolute;
|
2230
|
+
}
|
2231
|
+
|
2232
|
+
.jvectormap-legend-cnt-h {
|
2233
|
+
bottom: 0;
|
2234
|
+
right: 0;
|
2235
|
+
}
|
2236
|
+
|
2237
|
+
.jvectormap-legend-cnt-v {
|
2238
|
+
top: 0;
|
2239
|
+
right: 0;
|
2240
|
+
}
|
2241
|
+
|
2242
|
+
.jvectormap-legend {
|
2243
|
+
background: black;
|
2244
|
+
color: white;
|
2245
|
+
border-radius: 3px;
|
2246
|
+
}
|
2247
|
+
|
2248
|
+
.jvectormap-legend-cnt-h .jvectormap-legend {
|
2249
|
+
float: left;
|
2250
|
+
margin: 0 10px 10px 0;
|
2251
|
+
padding: 3px 3px 1px 3px;
|
2252
|
+
}
|
2253
|
+
|
2254
|
+
.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
|
2255
|
+
float: left;
|
2256
|
+
}
|
2257
|
+
|
2258
|
+
.jvectormap-legend-cnt-v .jvectormap-legend {
|
2259
|
+
margin: 10px 10px 0 0;
|
2260
|
+
padding: 3px;
|
2261
|
+
}
|
2262
|
+
|
2263
|
+
.jvectormap-legend-cnt-h .jvectormap-legend-tick {
|
2264
|
+
width: 40px;
|
2265
|
+
}
|
2266
|
+
|
2267
|
+
.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
|
2268
|
+
height: 15px;
|
2269
|
+
}
|
2270
|
+
|
2271
|
+
.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
|
2272
|
+
height: 20px;
|
2273
|
+
width: 20px;
|
2274
|
+
display: inline-block;
|
2275
|
+
vertical-align: middle;
|
2276
|
+
}
|
2277
|
+
|
2278
|
+
.jvectormap-legend-tick-text {
|
2279
|
+
font-size: 12px;
|
2280
|
+
}
|
2281
|
+
|
2282
|
+
.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
|
2283
|
+
text-align: center;
|
2284
|
+
}
|
2285
|
+
|
2286
|
+
.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
|
2287
|
+
display: inline-block;
|
2288
|
+
vertical-align: middle;
|
2289
|
+
line-height: 20px;
|
2290
|
+
padding-left: 3px;
|
2291
|
+
}
|
2292
|
+
|
2293
|
+
|
2294
|
+
/*Slick Carousel */
|
2295
|
+
|
2296
|
+
.slick-prev:before,
|
2297
|
+
.slick-next:before
|
2298
|
+
{
|
2299
|
+
color: $navy !important;
|
2300
|
+
}
|
2301
|
+
|
2302
|
+
/* Payments */
|
2303
|
+
|
2304
|
+
.payment-card {
|
2305
|
+
background: #ffffff;
|
2306
|
+
padding: 20px;
|
2307
|
+
margin-bottom: 25px;
|
2308
|
+
border: 1px solid $border-color;
|
2309
|
+
}
|
2310
|
+
|
2311
|
+
.payment-icon-big {
|
2312
|
+
font-size: 60px !important;
|
2313
|
+
color: $light-gray;
|
2314
|
+
}
|
2315
|
+
|
2316
|
+
.payments-method.panel-group .panel+.panel {
|
2317
|
+
margin-top: -1px;
|
2318
|
+
}
|
2319
|
+
|
2320
|
+
.payments-method .panel-heading {
|
2321
|
+
padding: 15px;
|
2322
|
+
}
|
2323
|
+
|
2324
|
+
.payments-method .panel{
|
2325
|
+
border-radius: 0;
|
2326
|
+
}
|
2327
|
+
|
2328
|
+
.payments-method .panel-heading h5 {
|
2329
|
+
margin-bottom: 5px;
|
2330
|
+
}
|
2331
|
+
|
2332
|
+
.payments-method .panel-heading i {
|
2333
|
+
font-size: 26px;
|
2334
|
+
}
|
2335
|
+
|
2336
|
+
/* Select2 custom styles */
|
2337
|
+
|
2338
|
+
.select2-container--default .select2-selection--single,
|
2339
|
+
.select2-container--default .select2-selection--multiple {
|
2340
|
+
border-color: $border-color;
|
2341
|
+
}
|