oslo-red-cross-bootstrap-3-theme 1.6.0 → 1.7.0
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.
- package/.idea/watcherTasks.xml +4 -0
- package/_base.scss +4 -6
- package/_progress-bar.scss +12 -0
- package/_tables.scss +4 -0
- package/index.scss +6 -4
- package/package.json +1 -1
- package/_autocomplete.scss +0 -57
- /package/{_border-margin-padding-shim.scss → _horizontal-border-margin-padding-shim.scss} +0 -0
- /package/{_bootstrap-3-vert-offset-shim.scss → _vertical-margin-shim.scss} +0 -0
package/_base.scss
CHANGED
|
@@ -141,11 +141,13 @@ h1 > .label {
|
|
|
141
141
|
color: $brand-warning !important;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
+
// Sidebar filters
|
|
144
145
|
.collapsable.in,
|
|
145
146
|
.collapsable.collapsing {
|
|
146
147
|
display: block !important;
|
|
147
148
|
}
|
|
148
149
|
|
|
150
|
+
// Participant self-registration
|
|
149
151
|
.list-dashed {
|
|
150
152
|
padding: 0;
|
|
151
153
|
margin: 0;
|
|
@@ -160,12 +162,8 @@ h1 > .label {
|
|
|
160
162
|
margin-bottom: 0;
|
|
161
163
|
}
|
|
162
164
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
display: block !important;
|
|
166
|
-
visibility: visible !important;
|
|
167
|
-
height: auto !important;
|
|
168
|
-
}
|
|
165
|
+
.cursor-pointer {
|
|
166
|
+
cursor: pointer !important;
|
|
169
167
|
}
|
|
170
168
|
|
|
171
169
|
@media (max-width: $screen-sm-min) {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// Attendance bars
|
|
2
|
+
.progress-bar-primary {
|
|
3
|
+
@include progress-bar-variant($brand-primary);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.progress-bar-bordered > a:not(:last-child:hover) {
|
|
7
|
+
border-right: 1px solid $gray-lighter;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.progress-bar-bordered > a:hover {
|
|
11
|
+
color: #fff;
|
|
12
|
+
}
|
package/_tables.scss
CHANGED
package/index.scss
CHANGED
|
@@ -3,12 +3,14 @@
|
|
|
3
3
|
@import "grid";
|
|
4
4
|
@import "responsive-utilities";
|
|
5
5
|
@import "layout";
|
|
6
|
+
|
|
6
7
|
@import "base";
|
|
7
|
-
@import "navbar";
|
|
8
|
-
@import "bootstrap-3-vert-offset-shim";
|
|
9
|
-
@import "border-margin-padding-shim";
|
|
10
8
|
@import "flex";
|
|
9
|
+
@import "navbar";
|
|
11
10
|
@import "tables";
|
|
12
11
|
@import "images";
|
|
12
|
+
@import "progress-bar";
|
|
13
13
|
@import "print";
|
|
14
|
-
|
|
14
|
+
|
|
15
|
+
@import "vertical-margin-shim";
|
|
16
|
+
@import "horizontal-border-margin-padding-shim";
|
package/package.json
CHANGED
package/_autocomplete.scss
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
.form-autocomplete {
|
|
2
|
-
height: 75px;
|
|
3
|
-
position:relative;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
#autocomplete-value {
|
|
7
|
-
position: absolute;
|
|
8
|
-
z-index: 2;
|
|
9
|
-
background: transparent;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
#autocomplete-hint {
|
|
13
|
-
color: $gray-light;
|
|
14
|
-
position: absolute;
|
|
15
|
-
background: transparent;
|
|
16
|
-
z-index: 1;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.autocomplete-suggestions {
|
|
20
|
-
border: 1px solid $gray-light;
|
|
21
|
-
border-radius: 6px;
|
|
22
|
-
background: #FFF;
|
|
23
|
-
overflow: auto;
|
|
24
|
-
margin-top: -2px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.autocomplete-suggestion {
|
|
28
|
-
padding: 11px 15px;
|
|
29
|
-
white-space: nowrap;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
font-size: 19px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.autocomplete-suggestions-lg > .autocomplete-suggestion {
|
|
35
|
-
font-size: 19px;
|
|
36
|
-
padding: 15px 30px;
|
|
37
|
-
white-space: nowrap;
|
|
38
|
-
overflow: hidden;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.autocomplete-selected {
|
|
42
|
-
background: $brand-info;
|
|
43
|
-
color: #fff;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.autocomplete-suggestions strong {
|
|
47
|
-
font-weight: bold;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.autocomplete-group {
|
|
51
|
-
padding: 15px 25px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.autocomplete-group strong {
|
|
55
|
-
display: block;
|
|
56
|
-
border-bottom: 1px solid #000;
|
|
57
|
-
}
|
|
File without changes
|
|
File without changes
|