viniBaxter-desk_front 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/app/assets/images/desk_front/.DS_Store +0 -0
- data/app/assets/images/desk_front/avatar-group-hover-last.svg +9 -0
- data/app/assets/images/desk_front/avatar-group-hover.svg +10 -0
- data/app/assets/images/desk_front/avatar-group.svg +9 -0
- data/app/assets/images/desk_front/avatar-status.svg +9 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/image_setUP.md +5 -0
- data/lib/viniBaxter/.DS_Store +0 -0
- data/lib/viniBaxter/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/desk_front/engine.rb +17 -0
- data/lib/viniBaxter/desk_front/version.rb +5 -0
- data/lib/viniBaxter/desk_front.rb +8 -0
- data/lib/viniBaxter/sass/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/_user-variables.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/_user.scss +4 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_forms.scss +107 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_layout.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_lists.scss +19 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_tables.scss +55 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_typography.scss +45 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_app-container.scss +9 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_attributes.scss +26 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_buttons.scss +51 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_cells.scss +47 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_field-unit.scss +45 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_flashes.scss +28 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_form-actions.scss +3 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_main-content.scss +29 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_navigation.scss +32 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_pagination.scss +18 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_search.scss +46 -0
- data/lib/viniBaxter/sass/desk_front/administrate/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/administrate/index.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/administrate/library/_clearfix.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/administrate/library/_data-label.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/administrate/library/_variables.scss +0 -0
- data/lib/viniBaxter/sass/desk_front/administrate/reset/_normalize.scss +447 -0
- data/lib/viniBaxter/sass/desk_front/administrate/utilities/_text-color.scss +3 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_alert.scss +51 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_badge.scss +54 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_breadcrumb.scss +42 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_button-group.scss +163 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_buttons.scss +139 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_card.scss +278 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_carousel.scss +197 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_close.scss +41 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_code.scss +48 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_custom-forms.scss +521 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_dropdown.scss +191 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_forms.scss +338 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_functions.scss +134 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_grid.scss +69 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_images.scss +42 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_input-group.scss +191 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_jumbotron.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_list-group.scss +158 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_media.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_mixins.scss +47 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_modal.scss +239 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_nav.scss +120 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_navbar.scss +324 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_pagination.scss +73 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_popover.scss +170 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_print.scss +141 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_progress.scss +46 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_reboot.scss +482 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_root.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_spinners.scss +55 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_tables.scss +185 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_toasts.scss +44 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_tooltip.scss +115 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_transitions.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_type.scss +125 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_utilities.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_variables.scss +1143 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/bootstrap-grid.scss +29 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/bootstrap-reboot.scss +12 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/bootstrap.scss +44 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_alert.scss +13 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_background-variant.scss +22 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_badge.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_border-radius.scss +63 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_box-shadow.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_breakpoints.scss +123 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_buttons.scss +110 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_caret.scss +62 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_clearfix.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_deprecate.scss +10 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_float.scss +14 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_forms.scss +177 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_gradients.scss +45 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_grid-framework.scss +71 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_grid.scss +69 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_hover.scss +37 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_image.scss +36 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_list-group.scss +21 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_lists.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_nav-divider.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_pagination.scss +22 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_reset-text.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_resize.scss +6 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_screen-reader.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_size.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_table-row.scss +39 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_text-emphasis.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_text-hide.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_text-truncate.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_transition.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_visibility.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_align.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_background.scss +19 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_borders.scss +75 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_clearfix.scss +3 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_display.scss +26 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_embed.scss +39 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_flex.scss +51 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_float.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_overflow.scss +5 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_position.scss +32 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_screenreaders.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_shadows.scss +6 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_sizing.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_spacing.scss +73 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_stretched-link.scss +19 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_text.scss +72 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_visibility.scss +13 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/vendor/_rfs.scss +204 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_alert.scss +28 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_avatar.scss +197 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_badge.scss +28 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_breadcrumb.scss +55 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_buttons.scss +68 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_card.scss +298 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_chart.scss +79 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_checklist.scss +36 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_close.scss +10 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_code.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_comment.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_custom-forms.scss +37 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_dashkit.scss +38 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_dropdowns.scss +124 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_forms.scss +272 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_header.scss +58 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_icon.scss +54 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_jumbotron.scss +15 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_kanban.scss +68 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_list-group.scss +53 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_main-content.scss +70 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_mixins.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_modal.scss +101 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_nav.scss +112 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_navbar.scss +722 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_popover.scss +101 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_progress.scss +27 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_reboot.scss +12 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_root.scss +12 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_tables.scss +76 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_toasts.scss +4 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_type.scss +115 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_utilities.scss +5 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_variables.scss +0 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_vendors.scss +5 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/dark/_overrides-dark.scss +60 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/dark/_variables-dark.scss +219 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/mixins/_badge.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/mixins/_breakpoints.scss +9 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss +80 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_borders.scss +48 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_lift.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_sizing.scss +10 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_type.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_dropzone.scss +75 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_flatpickr.scss +69 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_list.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_quill.scss +283 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_select2.scss +128 -0
- data/lib/viniBaxter/sass/desk_front/theme-dark.scss +30 -0
- data/lib/viniBaxter/sass/desk_front/theme.scss +24 -0
- data/lib/viniBaxter/sass/desk_front.scss +23 -0
- data/viniBaxter-desk_front.gemspec +33 -0
- metadata +275 -0
@@ -0,0 +1,447 @@
|
|
1
|
+
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
|
2
|
+
|
3
|
+
/* Document
|
4
|
+
========================================================================== */
|
5
|
+
|
6
|
+
/**
|
7
|
+
* 1. Correct the line height in all browsers.
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in
|
9
|
+
* IE on Windows Phone and in iOS.
|
10
|
+
*/
|
11
|
+
|
12
|
+
html {
|
13
|
+
line-height: 1.15; /* 1 */
|
14
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
15
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
16
|
+
}
|
17
|
+
|
18
|
+
/* Sections
|
19
|
+
========================================================================== */
|
20
|
+
|
21
|
+
/**
|
22
|
+
* Remove the margin in all browsers (opinionated).
|
23
|
+
*/
|
24
|
+
|
25
|
+
body {
|
26
|
+
margin: 0;
|
27
|
+
}
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Add the correct display in IE 9-.
|
31
|
+
*/
|
32
|
+
|
33
|
+
article,
|
34
|
+
aside,
|
35
|
+
footer,
|
36
|
+
header,
|
37
|
+
nav,
|
38
|
+
section {
|
39
|
+
display: block;
|
40
|
+
}
|
41
|
+
|
42
|
+
/**
|
43
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
44
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
45
|
+
*/
|
46
|
+
|
47
|
+
h1 {
|
48
|
+
font-size: 2em;
|
49
|
+
margin: 0.67em 0;
|
50
|
+
}
|
51
|
+
|
52
|
+
/* Grouping content
|
53
|
+
========================================================================== */
|
54
|
+
|
55
|
+
/**
|
56
|
+
* Add the correct display in IE 9-.
|
57
|
+
* 1. Add the correct display in IE.
|
58
|
+
*/
|
59
|
+
|
60
|
+
figcaption,
|
61
|
+
figure,
|
62
|
+
main { /* 1 */
|
63
|
+
display: block;
|
64
|
+
}
|
65
|
+
|
66
|
+
/**
|
67
|
+
* Add the correct margin in IE 8.
|
68
|
+
*/
|
69
|
+
|
70
|
+
figure {
|
71
|
+
margin: 1em 40px;
|
72
|
+
}
|
73
|
+
|
74
|
+
/**
|
75
|
+
* 1. Add the correct box sizing in Firefox.
|
76
|
+
* 2. Show the overflow in Edge and IE.
|
77
|
+
*/
|
78
|
+
|
79
|
+
hr {
|
80
|
+
box-sizing: content-box; /* 1 */
|
81
|
+
height: 0; /* 1 */
|
82
|
+
overflow: visible; /* 2 */
|
83
|
+
}
|
84
|
+
|
85
|
+
/**
|
86
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
87
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
88
|
+
*/
|
89
|
+
|
90
|
+
pre {
|
91
|
+
font-family: monospace, monospace; /* 1 */
|
92
|
+
font-size: 1em; /* 2 */
|
93
|
+
}
|
94
|
+
|
95
|
+
/* Text-level semantics
|
96
|
+
========================================================================== */
|
97
|
+
|
98
|
+
/**
|
99
|
+
* 1. Remove the gray background on active links in IE 10.
|
100
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
101
|
+
*/
|
102
|
+
|
103
|
+
a {
|
104
|
+
background-color: transparent; /* 1 */
|
105
|
+
-webkit-text-decoration-skip: objects; /* 2 */
|
106
|
+
}
|
107
|
+
|
108
|
+
/**
|
109
|
+
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
|
110
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
111
|
+
*/
|
112
|
+
|
113
|
+
abbr[title] {
|
114
|
+
border-bottom: none; /* 1 */
|
115
|
+
text-decoration: underline; /* 2 */
|
116
|
+
text-decoration: underline dotted; /* 2 */
|
117
|
+
}
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
121
|
+
*/
|
122
|
+
|
123
|
+
b,
|
124
|
+
strong {
|
125
|
+
font-weight: inherit;
|
126
|
+
}
|
127
|
+
|
128
|
+
/**
|
129
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
130
|
+
*/
|
131
|
+
|
132
|
+
b,
|
133
|
+
strong {
|
134
|
+
font-weight: bolder;
|
135
|
+
}
|
136
|
+
|
137
|
+
/**
|
138
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
139
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
140
|
+
*/
|
141
|
+
|
142
|
+
code,
|
143
|
+
kbd,
|
144
|
+
samp {
|
145
|
+
font-family: monospace, monospace; /* 1 */
|
146
|
+
font-size: 1em; /* 2 */
|
147
|
+
}
|
148
|
+
|
149
|
+
/**
|
150
|
+
* Add the correct font style in Android 4.3-.
|
151
|
+
*/
|
152
|
+
|
153
|
+
dfn {
|
154
|
+
font-style: italic;
|
155
|
+
}
|
156
|
+
|
157
|
+
/**
|
158
|
+
* Add the correct background and color in IE 9-.
|
159
|
+
*/
|
160
|
+
|
161
|
+
mark {
|
162
|
+
background-color: #ff0;
|
163
|
+
color: #000;
|
164
|
+
}
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Add the correct font size in all browsers.
|
168
|
+
*/
|
169
|
+
|
170
|
+
small {
|
171
|
+
font-size: 80%;
|
172
|
+
}
|
173
|
+
|
174
|
+
/**
|
175
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
176
|
+
* all browsers.
|
177
|
+
*/
|
178
|
+
|
179
|
+
sub,
|
180
|
+
sup {
|
181
|
+
font-size: 75%;
|
182
|
+
line-height: 0;
|
183
|
+
position: relative;
|
184
|
+
vertical-align: baseline;
|
185
|
+
}
|
186
|
+
|
187
|
+
sub {
|
188
|
+
bottom: -0.25em;
|
189
|
+
}
|
190
|
+
|
191
|
+
sup {
|
192
|
+
top: -0.5em;
|
193
|
+
}
|
194
|
+
|
195
|
+
/* Embedded content
|
196
|
+
========================================================================== */
|
197
|
+
|
198
|
+
/**
|
199
|
+
* Add the correct display in IE 9-.
|
200
|
+
*/
|
201
|
+
|
202
|
+
audio,
|
203
|
+
video {
|
204
|
+
display: inline-block;
|
205
|
+
}
|
206
|
+
|
207
|
+
/**
|
208
|
+
* Add the correct display in iOS 4-7.
|
209
|
+
*/
|
210
|
+
|
211
|
+
audio:not([controls]) {
|
212
|
+
display: none;
|
213
|
+
height: 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
/**
|
217
|
+
* Remove the border on images inside links in IE 10-.
|
218
|
+
*/
|
219
|
+
|
220
|
+
img {
|
221
|
+
border-style: none;
|
222
|
+
}
|
223
|
+
|
224
|
+
/**
|
225
|
+
* Hide the overflow in IE.
|
226
|
+
*/
|
227
|
+
|
228
|
+
svg:not(:root) {
|
229
|
+
overflow: hidden;
|
230
|
+
}
|
231
|
+
|
232
|
+
/* Forms
|
233
|
+
========================================================================== */
|
234
|
+
|
235
|
+
/**
|
236
|
+
* 1. Change the font styles in all browsers (opinionated).
|
237
|
+
* 2. Remove the margin in Firefox and Safari.
|
238
|
+
*/
|
239
|
+
|
240
|
+
button,
|
241
|
+
input,
|
242
|
+
optgroup,
|
243
|
+
select,
|
244
|
+
textarea {
|
245
|
+
font-family: sans-serif; /* 1 */
|
246
|
+
font-size: 100%; /* 1 */
|
247
|
+
line-height: 1.15; /* 1 */
|
248
|
+
margin: 0; /* 2 */
|
249
|
+
}
|
250
|
+
|
251
|
+
/**
|
252
|
+
* Show the overflow in IE.
|
253
|
+
* 1. Show the overflow in Edge.
|
254
|
+
*/
|
255
|
+
|
256
|
+
button,
|
257
|
+
input { /* 1 */
|
258
|
+
overflow: visible;
|
259
|
+
}
|
260
|
+
|
261
|
+
/**
|
262
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
263
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
264
|
+
*/
|
265
|
+
|
266
|
+
button,
|
267
|
+
select { /* 1 */
|
268
|
+
text-transform: none;
|
269
|
+
}
|
270
|
+
|
271
|
+
/**
|
272
|
+
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
273
|
+
* controls in Android 4.
|
274
|
+
* 2. Correct the inability to style clickable types in iOS and Safari.
|
275
|
+
*/
|
276
|
+
|
277
|
+
button,
|
278
|
+
html [type="button"], /* 1 */
|
279
|
+
[type="reset"],
|
280
|
+
[type="submit"] {
|
281
|
+
-webkit-appearance: button; /* 2 */
|
282
|
+
}
|
283
|
+
|
284
|
+
/**
|
285
|
+
* Remove the inner border and padding in Firefox.
|
286
|
+
*/
|
287
|
+
|
288
|
+
button::-moz-focus-inner,
|
289
|
+
[type="button"]::-moz-focus-inner,
|
290
|
+
[type="reset"]::-moz-focus-inner,
|
291
|
+
[type="submit"]::-moz-focus-inner {
|
292
|
+
border-style: none;
|
293
|
+
padding: 0;
|
294
|
+
}
|
295
|
+
|
296
|
+
/**
|
297
|
+
* Restore the focus styles unset by the previous rule.
|
298
|
+
*/
|
299
|
+
|
300
|
+
button:-moz-focusring,
|
301
|
+
[type="button"]:-moz-focusring,
|
302
|
+
[type="reset"]:-moz-focusring,
|
303
|
+
[type="submit"]:-moz-focusring {
|
304
|
+
outline: 1px dotted ButtonText;
|
305
|
+
}
|
306
|
+
|
307
|
+
/**
|
308
|
+
* Correct the padding in Firefox.
|
309
|
+
*/
|
310
|
+
|
311
|
+
fieldset {
|
312
|
+
padding: 0.35em 0.75em 0.625em;
|
313
|
+
}
|
314
|
+
|
315
|
+
/**
|
316
|
+
* 1. Correct the text wrapping in Edge and IE.
|
317
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
318
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
319
|
+
* `fieldset` elements in all browsers.
|
320
|
+
*/
|
321
|
+
|
322
|
+
legend {
|
323
|
+
box-sizing: border-box; /* 1 */
|
324
|
+
color: inherit; /* 2 */
|
325
|
+
display: table; /* 1 */
|
326
|
+
max-width: 100%; /* 1 */
|
327
|
+
padding: 0; /* 3 */
|
328
|
+
white-space: normal; /* 1 */
|
329
|
+
}
|
330
|
+
|
331
|
+
/**
|
332
|
+
* 1. Add the correct display in IE 9-.
|
333
|
+
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
334
|
+
*/
|
335
|
+
|
336
|
+
progress {
|
337
|
+
display: inline-block; /* 1 */
|
338
|
+
vertical-align: baseline; /* 2 */
|
339
|
+
}
|
340
|
+
|
341
|
+
/**
|
342
|
+
* Remove the default vertical scrollbar in IE.
|
343
|
+
*/
|
344
|
+
|
345
|
+
textarea {
|
346
|
+
overflow: auto;
|
347
|
+
}
|
348
|
+
|
349
|
+
/**
|
350
|
+
* 1. Add the correct box sizing in IE 10-.
|
351
|
+
* 2. Remove the padding in IE 10-.
|
352
|
+
*/
|
353
|
+
|
354
|
+
[type="checkbox"],
|
355
|
+
[type="radio"] {
|
356
|
+
box-sizing: border-box; /* 1 */
|
357
|
+
padding: 0; /* 2 */
|
358
|
+
}
|
359
|
+
|
360
|
+
/**
|
361
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
362
|
+
*/
|
363
|
+
|
364
|
+
[type="number"]::-webkit-inner-spin-button,
|
365
|
+
[type="number"]::-webkit-outer-spin-button {
|
366
|
+
height: auto;
|
367
|
+
}
|
368
|
+
|
369
|
+
/**
|
370
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
371
|
+
* 2. Correct the outline style in Safari.
|
372
|
+
*/
|
373
|
+
|
374
|
+
[type="search"] {
|
375
|
+
-webkit-appearance: textfield; /* 1 */
|
376
|
+
outline-offset: -2px; /* 2 */
|
377
|
+
}
|
378
|
+
|
379
|
+
/**
|
380
|
+
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
381
|
+
*/
|
382
|
+
|
383
|
+
[type="search"]::-webkit-search-cancel-button,
|
384
|
+
[type="search"]::-webkit-search-decoration {
|
385
|
+
-webkit-appearance: none;
|
386
|
+
}
|
387
|
+
|
388
|
+
/**
|
389
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
390
|
+
* 2. Change font properties to `inherit` in Safari.
|
391
|
+
*/
|
392
|
+
|
393
|
+
::-webkit-file-upload-button {
|
394
|
+
-webkit-appearance: button; /* 1 */
|
395
|
+
font: inherit; /* 2 */
|
396
|
+
}
|
397
|
+
|
398
|
+
/* Interactive
|
399
|
+
========================================================================== */
|
400
|
+
|
401
|
+
/*
|
402
|
+
* Add the correct display in IE 9-.
|
403
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
404
|
+
*/
|
405
|
+
|
406
|
+
details, /* 1 */
|
407
|
+
menu {
|
408
|
+
display: block;
|
409
|
+
}
|
410
|
+
|
411
|
+
/*
|
412
|
+
* Add the correct display in all browsers.
|
413
|
+
*/
|
414
|
+
|
415
|
+
summary {
|
416
|
+
display: list-item;
|
417
|
+
}
|
418
|
+
|
419
|
+
/* Scripting
|
420
|
+
========================================================================== */
|
421
|
+
|
422
|
+
/**
|
423
|
+
* Add the correct display in IE 9-.
|
424
|
+
*/
|
425
|
+
|
426
|
+
canvas {
|
427
|
+
display: inline-block;
|
428
|
+
}
|
429
|
+
|
430
|
+
/**
|
431
|
+
* Add the correct display in IE.
|
432
|
+
*/
|
433
|
+
|
434
|
+
template {
|
435
|
+
display: none;
|
436
|
+
}
|
437
|
+
|
438
|
+
/* Hidden
|
439
|
+
========================================================================== */
|
440
|
+
|
441
|
+
/**
|
442
|
+
* Add the correct display in IE 10-.
|
443
|
+
*/
|
444
|
+
|
445
|
+
[hidden] {
|
446
|
+
display: none;
|
447
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
//
|
2
|
+
// Base styles
|
3
|
+
//
|
4
|
+
|
5
|
+
.alert {
|
6
|
+
position: relative;
|
7
|
+
padding: $alert-padding-y $alert-padding-x;
|
8
|
+
margin-bottom: $alert-margin-bottom;
|
9
|
+
border: $alert-border-width solid transparent;
|
10
|
+
@include border-radius($alert-border-radius);
|
11
|
+
}
|
12
|
+
|
13
|
+
// Headings for larger alerts
|
14
|
+
.alert-heading {
|
15
|
+
// Specified to prevent conflicts of changing $headings-color
|
16
|
+
color: inherit;
|
17
|
+
}
|
18
|
+
|
19
|
+
// Provide class for links that match alerts
|
20
|
+
.alert-link {
|
21
|
+
font-weight: $alert-link-font-weight;
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
// Dismissible alerts
|
26
|
+
//
|
27
|
+
// Expand the right padding and account for the close button's positioning.
|
28
|
+
|
29
|
+
.alert-dismissible {
|
30
|
+
padding-right: $close-font-size + $alert-padding-x * 2;
|
31
|
+
|
32
|
+
// Adjust close link position
|
33
|
+
.close {
|
34
|
+
position: absolute;
|
35
|
+
top: 0;
|
36
|
+
right: 0;
|
37
|
+
padding: $alert-padding-y $alert-padding-x;
|
38
|
+
color: inherit;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
|
43
|
+
// Alternate styles
|
44
|
+
//
|
45
|
+
// Generate contextual modifier classes for colorizing the alert.
|
46
|
+
|
47
|
+
@each $color, $value in $theme-colors {
|
48
|
+
.alert-#{$color} {
|
49
|
+
@include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));
|
50
|
+
}
|
51
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
// Base class
|
2
|
+
//
|
3
|
+
// Requires one of the contextual, color modifier classes for `color` and
|
4
|
+
// `background-color`.
|
5
|
+
|
6
|
+
.badge {
|
7
|
+
display: inline-block;
|
8
|
+
padding: $badge-padding-y $badge-padding-x;
|
9
|
+
@include font-size($badge-font-size);
|
10
|
+
font-weight: $badge-font-weight;
|
11
|
+
line-height: 1;
|
12
|
+
text-align: center;
|
13
|
+
white-space: nowrap;
|
14
|
+
vertical-align: baseline;
|
15
|
+
@include border-radius($badge-border-radius);
|
16
|
+
@include transition($badge-transition);
|
17
|
+
|
18
|
+
@at-root a#{&} {
|
19
|
+
@include hover-focus() {
|
20
|
+
text-decoration: none;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
// Empty badges collapse automatically
|
25
|
+
&:empty {
|
26
|
+
display: none;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
// Quick fix for badges in buttons
|
31
|
+
.btn .badge {
|
32
|
+
position: relative;
|
33
|
+
top: -1px;
|
34
|
+
}
|
35
|
+
|
36
|
+
// Pill badges
|
37
|
+
//
|
38
|
+
// Make them extra rounded with a modifier to replace v3's badges.
|
39
|
+
|
40
|
+
.badge-pill {
|
41
|
+
padding-right: $badge-pill-padding-x;
|
42
|
+
padding-left: $badge-pill-padding-x;
|
43
|
+
@include border-radius($badge-pill-border-radius);
|
44
|
+
}
|
45
|
+
|
46
|
+
// Colors
|
47
|
+
//
|
48
|
+
// Contextual variations (linked badges get darker on :hover).
|
49
|
+
|
50
|
+
@each $color, $value in $theme-colors {
|
51
|
+
.badge-#{$color} {
|
52
|
+
@include badge-variant($value);
|
53
|
+
}
|
54
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
.breadcrumb {
|
2
|
+
display: flex;
|
3
|
+
flex-wrap: wrap;
|
4
|
+
padding: $breadcrumb-padding-y $breadcrumb-padding-x;
|
5
|
+
margin-bottom: $breadcrumb-margin-bottom;
|
6
|
+
@include font-size($breadcrumb-font-size);
|
7
|
+
list-style: none;
|
8
|
+
background-color: $breadcrumb-bg;
|
9
|
+
@include border-radius($breadcrumb-border-radius);
|
10
|
+
}
|
11
|
+
|
12
|
+
.breadcrumb-item {
|
13
|
+
// The separator between breadcrumbs (by default, a forward-slash: "/")
|
14
|
+
+ .breadcrumb-item {
|
15
|
+
padding-left: $breadcrumb-item-padding;
|
16
|
+
|
17
|
+
&::before {
|
18
|
+
display: inline-block; // Suppress underlining of the separator in modern browsers
|
19
|
+
padding-right: $breadcrumb-item-padding;
|
20
|
+
color: $breadcrumb-divider-color;
|
21
|
+
content: escape-svg($breadcrumb-divider);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
// IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
|
26
|
+
// without `<ul>`s. The `::before` pseudo-element generates an element
|
27
|
+
// *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
|
28
|
+
//
|
29
|
+
// To trick IE into suppressing the underline, we give the pseudo-element an
|
30
|
+
// underline and then immediately remove it.
|
31
|
+
+ .breadcrumb-item:hover::before {
|
32
|
+
text-decoration: underline;
|
33
|
+
}
|
34
|
+
// stylelint-disable-next-line no-duplicate-selectors
|
35
|
+
+ .breadcrumb-item:hover::before {
|
36
|
+
text-decoration: none;
|
37
|
+
}
|
38
|
+
|
39
|
+
&.active {
|
40
|
+
color: $breadcrumb-active-color;
|
41
|
+
}
|
42
|
+
}
|