]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/application.scss
Fix margins/widths with top-menu and main-col on small screens
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
CommitLineData
161b061d 1$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
63c4db6d 2
9b8a7aa8 3@import '_bootstrap-variables';
dcbc29d5
C
4@import '_variables';
5@import '_mixins';
6
fa40cbc3 7@import '_fonts';
63c4db6d 8
d592e0a9 9@import '~video.js/dist/video-js.css';
c893d451 10
2a19a1e4 11$assets-path: '../assets/';
b335ccec 12@import './player/index';
c893d451 13@import './loading-bar';
e31f6ad6 14
2f4c784a 15@import './bootstrap';
bbe0f064
C
16@import './primeng-custom';
17
383bfc83
C
18[hidden] {
19 display: none !important;
20}
a64668c0 21
b33f657c 22body {
dcbc29d5
C
23 /*** theme ***/
24 // now beware node-sass requires interpolation
25 // for css custom properties #{$var}
680b5496
RK
26 --mainColor: #{$main-color};
27 --mainColorLighter: #{$main-color-lighter};
28 --mainHoverColor: #{$main-hover-color};
dcbc29d5
C
29 --mainBackgroundColor: #{$bg-color};
30 --mainForegroundColor: #{$fg-color};
680b5496 31 --secondaryColor: #{$secondary-color};
2fcc2294 32
1d9d9cfd
RK
33 --menuBackgroundColor: #{$menu-background};
34 --menuForegroundColor: #{$menu-color};
dcbc29d5 35 --submenuColor: #{$sub-menu-color};
2fcc2294 36
14aa8556 37 --inputBackgroundColor: #{$input-background-color};
dcbc29d5
C
38 --inputPlaceholderColor: #{$input-placeholder-color};
39
0240da5c
RK
40 --actionButtonColor: #{$grey-foreground-color};
41 --supportButtonBackgroundColor: #{transparent};
42 --supportButtonColor: #{var(--actionButtonColor)};
43 --supportButtonHeartColor: #{$support-button-heart};
2fcc2294 44
8a8e02a4 45 font-family: $main-fonts;
b33f657c 46 font-weight: $font-regular;
9a0fc840 47 color: var(--mainForegroundColor);
cdbfd2b0 48 background-color: var(--mainBackgroundColor);
b34a444e 49 font-size: 14px;
b33f657c
C
50}
51
52cc0d54
RK
52::selection {
53 color: var(--mainBackgroundColor);
54 background-color: var(--mainHoverColor);
55}
56
73e09f27
C
57#incompatible-browser {
58 display: none;
59 text-align: center;
60 position: absolute;
61 width: 100%;
62 top: 45%;
63}
64
07fa4c97
C
65strong {
66 font-weight: $font-semibold;
67}
68
383bfc83
C
69input.readonly {
70 /* Force blank on readonly inputs */
14aa8556 71 background-color: var(--inputBackgroundColor) !important;
0ac5edd9 72}
73
63347a0f
C
74input, textarea {
75 outline: none;
20c3a59e 76 color: var(--mainForegroundColor);
63347a0f
C
77}
78
a7f9fae9
C
79.btn-outline-secondary {
80 border-color: $input-border-color;
81}
82
d235f6b0
C
83label {
84 font-weight: $font-bold;
85 font-size: 15px;
09223546
C
86}
87
a2b817d3
C
88.form-error {
89 display: block;
41a676db 90 color: $red;
a2b817d3
C
91 margin-top: 5px;
92}
93
94.input-error {
41a676db 95 border-color: $red !important;
a2b817d3
C
96}
97
2d9fea16
RK
98.fullWidth {
99 width: 100%;
100 margin-left: auto;
101 margin-right: auto;
102 max-width: initial;
103}
104
383bfc83
C
105.glyphicon-black {
106 color: black;
107}
108
c4741804
RK
109.row {
110 margin: 0;
111}
112
383bfc83 113.main-col {
c30745f3 114 margin-left: $menu-width;
c4741804 115 width: calc(100% - #{$menu-width});
9bf9d2a5 116
c30745f3 117 .margin-content {
d178b5c1
C
118 margin-left: $not-expanded-horizontal-margins;
119 margin-right: $not-expanded-horizontal-margins;
b34a444e 120 flex-grow: 1;
c30745f3
C
121 }
122
123 .sub-menu {
9a0fc840 124 background-color: var(--submenuColor);
c30745f3
C
125 width: 100%;
126 height: 81px;
bce47964 127 margin-bottom: $sub-menu-margin-bottom;
c30745f3
C
128 display: flex;
129 align-items: center;
d178b5c1 130 padding-left: $not-expanded-horizontal-margins;
22a16e36 131 padding-right: $not-expanded-horizontal-margins;
c30745f3
C
132 }
133
134 // Override some properties if the main content is expanded (no menu on the left)
135 &.expanded {
136 margin-left: 0;
c4741804 137 width: 100%;
c30745f3
C
138
139 .margin-content {
140 margin-left: $expanded-horizontal-margins;
141 margin-right: $expanded-horizontal-margins;
142 }
143
144 .sub-menu {
145 padding-left: $expanded-horizontal-margins;
22a16e36 146 padding-right: $expanded-horizontal-margins;
c30745f3 147 }
602eb142 148 }
383bfc83 149}
602eb142 150
59aa1e5e 151.title-page {
9a0fc840 152 color: var(--mainForegroundColor);
59aa1e5e
C
153 font-size: 16px;
154 display: inline-block;
155 margin-right: 55px;
156 font-weight: $font-semibold;
157 @include disable-default-a-behaviour;
158
159 &.active, &.title-page-single {
59aa1e5e
C
160 margin-top: 30px;
161 margin-bottom: 25px;
162 }
cadb46d8 163
d6ed9ccc 164 &.active {
96f6278f 165 font-weight: $font-bold;
d6ed9ccc
RK
166 border-bottom: 2px solid var(--mainColor);
167 }
168
169 &.title-page-single {
170 font-size: 125%;
171 }
172
cadb46d8 173 &:hover, &:active, &:focus {
9a0fc840 174 color: var(--mainForegroundColor);
04e0fc48 175 }
1952a538 176
ece3029b 177 @media screen and (max-width: $mobile-view) {
2c3abc4f 178 margin-right: 15px;
1952a538 179 }
cadb46d8 180}
04e0fc48 181
482fa503
RK
182.title-page-about,
183.title-page-settings {
184 font-size: 115%;
185 font-weight: $font-regular;
186
187 &.active {
188 font-weight: $font-semibold;
189 }
190}
191
cd83ea1b
C
192.admin-sub-header {
193 display: flex;
194 align-items: center;
195 margin-bottom: 30px;
196
08c1efbe 197 .form-sub-title {
cd83ea1b
C
198 flex-grow: 1;
199 }
65b247dd
C
200
201 .admin-sub-nav a {
202 @include disable-default-a-behaviour;
203
204 font-size: 16px;
9a0fc840 205 color: var(--mainForegroundColor);
65b247dd
C
206 padding: 5px 15px;
207 border-radius: 0.25rem;
208
209 &.active {
210 font-weight: $font-semibold;
211 background-color: #f0f0f0;
9a0fc840 212 color: #000;
65b247dd
C
213 }
214 }
cd83ea1b
C
215}
216
08c1efbe 217.form-sub-title {
04e0fc48
C
218 font-size: 20px;
219 font-weight: bold;
59aa1e5e
C
220}
221
315cc0cc
C
222@keyframes spin {
223 from { transform: scale(1) rotate(0deg);}
224 to { transform: scale(1) rotate(360deg);}
225}
226
fb4fd623
C
227// In tables, don't have a hover different background
228table {
229 .action-button-edit, .action-button-delete {
230 &:hover, &:active, &:focus, &[disabled], &.disabled {
457bb213 231 background-color: $grey-background-color !important;
fb4fd623
C
232 }
233 }
234}
235
2d3741d6
C
236.no-results {
237 height: 40vh;
238 display: flex;
239 align-items: center;
240 justify-content: center;
241 font-size: 16px;
242 font-weight: $font-semibold;
243}
244
eb7c7a51
RK
245.dropdown-item {
246 @include dropdown-with-icon-item;
247
248 my-global-icon {
249 width: 22px;
250 height: 22px;
251 }
252}
253
45e0d669
RK
254.anchor {
255 position: relative;
256 top: #{-($header-height + 20px)};
257}
258
9b8a7aa8 259@media screen and (max-width: #{map-get($grid-breakpoints, xxl)}) {
2303a803
RK
260 .main-col {
261 &.expanded {
262 .margin-content {
263 margin-left: $expanded-horizontal-margins/2;
264 margin-right: $expanded-horizontal-margins/2;
265 }
266 }
267 }
268}
269
9b8a7aa8 270@media screen and (max-width: #{map-get($grid-breakpoints, lg)}) {
1f788f20 271 .main-col {
2303a803 272 &.expanded {
1f788f20 273 .margin-content {
2303a803
RK
274 margin-left: $expanded-horizontal-margins/3;
275 margin-right: $expanded-horizontal-margins/3;
1f788f20 276 }
dd778941
C
277
278 .sub-menu {
279 padding-left: 50px;
22a16e36
C
280
281 .title-page {
24e7916c 282 font-size: 17px;
22a16e36 283 }
dd778941 284 }
1f788f20
C
285 }
286 }
287}
288
8ff3f883 289@media screen and (max-width: $small-view) {
20206dfb
C
290 .main-col {
291 margin-left: 0;
292
293 &, &.expanded {
294 .margin-content {
6693df9d
C
295 margin-left: 15px;
296 margin-right: 15px;
20206dfb
C
297 }
298
299 .sub-menu {
2c3abc4f
C
300 width: 100vw;
301 overflow-x: auto;
dd778941 302 padding-left: 15px;
22a16e36 303 padding-right: 15px;
20206dfb
C
304 margin-bottom: 10px;
305 }
306
307 input[type=text], input[type=password] {
308 width: 100% !important;
309 }
310 }
311 }
457bb213 312}