_understrap-bootstrap4.scss
3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
body {
overflow-x: hidden; // Fix for Windows Chrome horizontal scrollbar.
}
// Some basic padding for all wrappers
.wrapper {
padding: $grid-gutter-width 0;
}
// Reset hero wrapper padding to 0
#wrapper-hero {
padding: 0px !important;
}
// Adding basic WordPress classes to pass the WordPress.org tests
.sticky,
.gallery-caption,
.bypostauthor {
font-size: inherit;
}
// Separate sticky wrapper from main content
.wrapper#wrapper-sticky {
border-bottom: 1px solid $gray-300;
}
// Adding some contrast background color to footer full widget
#wrapper-footer-full,
#wrapper-static-hero {
background-color: $gray-200;
}
// Necessary WP classes
.wp-caption {
font-size: inherit;
}
.wp-caption-text {
font-size: inherit;
}
.screen-reader-text {
@include sr-only();
}
.alignleft {
display: inline;
float: left;
margin-right: $spacer;
}
.alignright {
display: inline;
float: right;
margin-left: $spacer;
}
.aligncenter {
@extend .mx-auto;
display: block;
}
.widget_categories,
.widget_archive {
select {
@extend .form-control;
}
}
// Post design
.entry-footer span {
padding-right: 10px;
}
img.wp-post-image,
article img,
figure,
img,
#secondary img {
max-width: 100%;
height: auto;
}
// Skip to content link
a.skip-link {
position: fixed;
z-index: 1000;
top: 0px;
right: 0px;
}
// Reset Jumbotron default margin
.jumbotron {
margin-bottom: 0px;
}
// Dropdown translation
.navbar-dark .navbar-nav .dropdown-menu .nav-link {
display: block;
width: 100%; // For `<button>`s
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
clear: both;
font-weight: $font-weight-normal;
color: $dropdown-link-color !important;
text-align: inherit; // For `<button>`s
white-space: nowrap; // prevent links from randomly breaking onto new lines
background: none; // For `<button>`s
border: 0; // For `<button>`s
@include hover-focus {
color: $dropdown-link-hover-color !important;
text-decoration: none;
background-color: $dropdown-link-hover-bg;
}
&.active,
&:active {
color: $dropdown-link-active-color !important;
text-decoration: none;
background-color: $dropdown-link-active-bg;
}
&.disabled,
&:disabled {
color: $dropdown-link-disabled-color !important;
background-color: transparent;
// Remove CSS gradients if they're enabled
@if $enable-gradients {
background-image: none;
}
}
}
.navbar-light .navbar-brand a {
color: $navbar-light-active-color;
@include hover-focus {
color: $navbar-light-active-color;
}
}
.navbar-dark .navbar-brand a {
color: $navbar-dark-active-color;
@include hover-focus {
color: $navbar-dark-active-color;
}
}
.navbar h1 {
font-weight: $font-weight-normal;
}
// Galleries
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
@for $i from 2 through 9 {
.gallery-columns-#{$i} & {
max-width: floor( percentage( 1 / $i ) * 100 ) / 100;
}
}
}
.gallery-caption {
display: block;
}
// Accessibility requirement for content links.
.entry-content p a:not(.btn) {
text-decoration: underline;
}