2018-09-28 03:07:05 -05:00
|
|
|
$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
|
2017-12-11 10:36:46 -06:00
|
|
|
|
2021-08-06 09:41:08 -05:00
|
|
|
@use 'sass:math';
|
|
|
|
|
2021-05-27 11:25:00 -05:00
|
|
|
@use '_variables' as *;
|
|
|
|
@use '_mixins' as *;
|
2018-09-05 08:32:15 -05:00
|
|
|
|
2021-05-27 10:45:36 -05:00
|
|
|
@use '_fonts';
|
2017-12-11 10:36:46 -06:00
|
|
|
|
2021-05-27 10:45:36 -05:00
|
|
|
@use './classes';
|
2021-03-29 08:56:01 -05:00
|
|
|
|
2021-06-29 08:17:01 -05:00
|
|
|
@use './custom-markup';
|
|
|
|
|
2021-07-12 07:22:37 -05:00
|
|
|
@use './ng-select';
|
|
|
|
|
|
|
|
// Needs an import because we extends glyphicon icons in primeng
|
|
|
|
@import './bootstrap';
|
|
|
|
@import './primeng-custom';
|
|
|
|
|
2017-04-21 04:06:33 -05:00
|
|
|
[hidden] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2016-07-19 09:45:07 -05:00
|
|
|
|
2017-12-01 02:20:19 -06:00
|
|
|
body {
|
2018-09-05 08:32:15 -05:00
|
|
|
/*** theme ***/
|
2020-11-19 04:12:01 -06:00
|
|
|
// now beware sass requires interpolation
|
2018-09-05 08:32:15 -05:00
|
|
|
// for css custom properties #{$var}
|
2020-03-11 07:50:53 -05:00
|
|
|
--mainColor: #{$main-color};
|
|
|
|
--mainColorLighter: #{$main-color-lighter};
|
2020-04-02 04:39:14 -05:00
|
|
|
--mainColorLightest: #{$main-color-lightest};
|
2020-03-11 07:50:53 -05:00
|
|
|
--mainHoverColor: #{$main-hover-color};
|
2018-09-05 08:32:15 -05:00
|
|
|
--mainBackgroundColor: #{$bg-color};
|
|
|
|
--mainForegroundColor: #{$fg-color};
|
2020-03-11 07:50:53 -05:00
|
|
|
--secondaryColor: #{$secondary-color};
|
2019-12-03 13:10:27 -06:00
|
|
|
|
2020-05-22 04:21:55 -05:00
|
|
|
--greyForegroundColor: #{$grey-foreground-color};
|
2020-07-24 10:21:25 -05:00
|
|
|
--greyBackgroundColor: #{$grey-background-color};
|
2020-05-22 04:21:55 -05:00
|
|
|
|
2018-09-11 15:55:41 -05:00
|
|
|
--menuBackgroundColor: #{$menu-background};
|
|
|
|
--menuForegroundColor: #{$menu-color};
|
2021-03-25 07:42:55 -05:00
|
|
|
|
2021-03-31 02:07:25 -05:00
|
|
|
--submenuBackgroundColor: #{$sub-menu-background-color};
|
2021-03-25 07:42:55 -05:00
|
|
|
--channelBackgroundColor: #{$channel-background-color};
|
2019-12-03 13:10:27 -06:00
|
|
|
|
2020-05-20 04:39:31 -05:00
|
|
|
--inputForegroundColor: #{$input-foreground-color};
|
2020-01-29 09:00:28 -06:00
|
|
|
--inputBackgroundColor: #{$input-background-color};
|
2018-09-05 08:32:15 -05:00
|
|
|
--inputPlaceholderColor: #{$input-placeholder-color};
|
|
|
|
|
2020-05-20 04:39:31 -05:00
|
|
|
--textareaForegroundColor: #{$textarea-foreground-color};
|
2020-04-28 07:53:43 -05:00
|
|
|
--textareaBackgroundColor: #{$textarea-background-color};
|
2020-05-20 06:52:12 -05:00
|
|
|
--markdownTextareaBackgroundColor: #{$markdown-textarea-background-color};
|
2020-04-28 07:53:43 -05:00
|
|
|
|
2019-12-24 07:04:37 -06:00
|
|
|
--actionButtonColor: #{$grey-foreground-color};
|
|
|
|
--supportButtonBackgroundColor: #{transparent};
|
2020-06-09 02:33:28 -05:00
|
|
|
--supportButtonColor: #{pvar(--actionButtonColor)};
|
2019-12-24 07:04:37 -06:00
|
|
|
--supportButtonHeartColor: #{$support-button-heart};
|
2019-12-03 13:10:27 -06:00
|
|
|
|
2020-05-22 04:15:31 -05:00
|
|
|
--activatedActionButtonColor: #{$activated-action-button-color};
|
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
--horizontalMarginContent: #{$not-expanded-horizontal-margins};
|
2021-04-01 04:10:27 -05:00
|
|
|
--videosHorizontalMarginContent: 6vw;
|
2021-03-31 04:21:10 -05:00
|
|
|
--mainColWidth: calc(100vw - #{$menu-width});
|
2020-08-07 08:39:25 -05:00
|
|
|
|
2018-02-22 11:32:31 -06:00
|
|
|
font-family: $main-fonts;
|
2017-12-01 02:20:19 -06:00
|
|
|
font-weight: $font-regular;
|
2020-06-09 02:33:28 -05:00
|
|
|
color: pvar(--mainForegroundColor);
|
|
|
|
background-color: pvar(--mainBackgroundColor);
|
2018-08-09 02:22:10 -05:00
|
|
|
font-size: 14px;
|
2020-07-13 16:51:46 -05:00
|
|
|
// On desktop browsers, make sure vertical scroll bar is always visible
|
|
|
|
// Allow to disable the scrollbar instead of hide it when the content fit the body
|
|
|
|
// And not move the content and header horizontally sticked to right when the content is updating
|
|
|
|
overflow-y: scroll;
|
2021-06-07 10:38:31 -05:00
|
|
|
|
|
|
|
// Fix "reboot" style that set text-align: left
|
|
|
|
text-align: start;
|
2017-12-01 02:20:19 -06:00
|
|
|
}
|
|
|
|
|
2020-02-03 07:04:42 -06:00
|
|
|
::selection {
|
2020-06-09 02:33:28 -05:00
|
|
|
color: pvar(--mainBackgroundColor);
|
|
|
|
background-color: pvar(--mainHoverColor);
|
2020-02-03 07:04:42 -06:00
|
|
|
}
|
|
|
|
|
2021-02-03 05:51:55 -06:00
|
|
|
noscript,
|
2018-03-08 05:01:55 -06:00
|
|
|
#incompatible-browser {
|
2021-02-03 05:51:55 -06:00
|
|
|
display: block;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
max-width: 600px;
|
|
|
|
margin: 1rem auto;
|
2018-03-08 05:01:55 -06:00
|
|
|
}
|
|
|
|
|
2018-02-20 09:13:05 -06:00
|
|
|
strong {
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
}
|
|
|
|
|
2021-11-02 04:01:28 -05:00
|
|
|
input[readonly] {
|
2017-04-21 04:06:33 -05:00
|
|
|
/* Force blank on readonly inputs */
|
2020-06-09 02:33:28 -05:00
|
|
|
background-color: pvar(--inputBackgroundColor) !important;
|
2015-12-05 05:14:55 -06:00
|
|
|
}
|
|
|
|
|
2021-04-28 09:41:07 -05:00
|
|
|
input,
|
|
|
|
textarea {
|
2018-08-09 07:55:06 -05:00
|
|
|
outline: none;
|
2021-01-20 03:59:47 -06:00
|
|
|
color: pvar(--inputForegroundColor);
|
2018-08-09 07:55:06 -05:00
|
|
|
}
|
|
|
|
|
2020-06-11 12:19:23 -05:00
|
|
|
button {
|
|
|
|
@include disable-outline;
|
2021-04-28 09:41:07 -05:00
|
|
|
|
|
|
|
background: unset;
|
2020-06-11 12:19:23 -05:00
|
|
|
}
|
|
|
|
|
2017-12-05 09:48:26 -06:00
|
|
|
label {
|
|
|
|
font-weight: $font-bold;
|
|
|
|
font-size: 15px;
|
2017-04-21 09:40:45 -05:00
|
|
|
}
|
|
|
|
|
2020-08-09 07:20:56 -05:00
|
|
|
code {
|
|
|
|
background-color: pvar(--greyBackgroundColor);
|
2020-11-30 09:45:22 -06:00
|
|
|
color: pvar(--greyForegroundColor);
|
2020-08-09 07:20:56 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
padding: .2em .4em;
|
|
|
|
margin: auto .4em;
|
|
|
|
font-size: 75%;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2021-07-20 06:47:49 -05:00
|
|
|
.form-error,
|
|
|
|
.form-warning {
|
2017-12-06 02:19:25 -06:00
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2021-07-20 06:47:49 -05:00
|
|
|
.form-error {
|
|
|
|
color: $red;
|
|
|
|
}
|
|
|
|
|
2021-04-28 09:41:07 -05:00
|
|
|
.input-error,
|
2020-12-04 08:58:55 -06:00
|
|
|
my-input-toggle-hidden ::ng-deep input {
|
2018-08-28 10:39:29 -05:00
|
|
|
border-color: $red !important;
|
2017-12-06 02:19:25 -06:00
|
|
|
}
|
|
|
|
|
2021-04-28 09:41:07 -05:00
|
|
|
.full-width {
|
2018-08-30 04:15:22 -05:00
|
|
|
width: 100%;
|
2021-06-07 10:38:31 -05:00
|
|
|
margin: 0 auto;
|
2018-08-30 04:15:22 -05:00
|
|
|
max-width: initial;
|
|
|
|
}
|
|
|
|
|
2017-04-21 04:06:33 -05:00
|
|
|
.glyphicon-black {
|
2021-04-28 09:41:07 -05:00
|
|
|
color: #000;
|
2017-04-21 04:06:33 -05:00
|
|
|
}
|
|
|
|
|
2020-03-13 09:30:23 -05:00
|
|
|
.row {
|
2020-04-03 07:13:24 -05:00
|
|
|
margin: 0 !important;
|
2020-03-13 09:30:23 -05:00
|
|
|
}
|
|
|
|
|
2017-04-21 04:06:33 -05:00
|
|
|
.main-col {
|
2021-06-07 10:38:31 -05:00
|
|
|
@include margin-left($menu-width);
|
|
|
|
|
2020-03-13 09:30:23 -05:00
|
|
|
width: calc(100% - #{$menu-width});
|
2020-04-02 04:39:14 -05:00
|
|
|
outline: none;
|
2017-12-01 07:46:22 -06:00
|
|
|
|
2017-12-01 10:38:26 -06:00
|
|
|
.margin-content {
|
2021-06-07 10:38:31 -05:00
|
|
|
margin: 0 pvar(--horizontalMarginContent);
|
2018-08-09 02:22:10 -05:00
|
|
|
flex-grow: 1;
|
2017-12-01 10:38:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.sub-menu {
|
2021-03-31 02:07:25 -05:00
|
|
|
background-color: pvar(--submenuBackgroundColor);
|
2017-12-01 10:38:26 -06:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-06-07 10:38:31 -05:00
|
|
|
padding: 0 pvar(--horizontalMarginContent);
|
2020-08-10 16:28:31 -05:00
|
|
|
height: $sub-menu-height;
|
|
|
|
margin-bottom: $sub-menu-margin-bottom;
|
2021-03-31 04:21:10 -05:00
|
|
|
overflow-x: auto;
|
2020-08-10 02:42:50 -05:00
|
|
|
|
|
|
|
&.sub-menu-fixed {
|
|
|
|
position: fixed;
|
2020-08-19 04:35:01 -05:00
|
|
|
z-index: #{z('sub-menu') - 1};
|
2021-03-31 04:21:10 -05:00
|
|
|
max-width: pvar(--mainColWidth);
|
2020-07-24 16:29:39 -05:00
|
|
|
}
|
2017-12-01 10:38:26 -06:00
|
|
|
}
|
|
|
|
|
2020-08-10 16:28:31 -05:00
|
|
|
// Use an appropriate offset top when sub-menu fixed
|
|
|
|
.margin-content.offset-content {
|
|
|
|
padding-top: $sub-menu-height + $sub-menu-margin-bottom;
|
|
|
|
}
|
|
|
|
|
2017-12-01 10:38:26 -06:00
|
|
|
// Override some properties if the main content is expanded (no menu on the left)
|
|
|
|
&.expanded {
|
2021-03-31 04:21:10 -05:00
|
|
|
--horizontalMarginContent: #{$expanded-horizontal-margins};
|
|
|
|
--mainColWidth: 100vw;
|
|
|
|
|
2021-06-07 10:38:31 -05:00
|
|
|
@include margin-left(0);
|
2020-03-13 09:30:23 -05:00
|
|
|
width: 100%;
|
2016-08-12 09:52:10 -05:00
|
|
|
}
|
2020-04-28 07:53:43 -05:00
|
|
|
|
2021-04-28 09:41:07 -05:00
|
|
|
&.lock-scroll .main-row > router-outlet + * { /* stylelint-disable-line selector-max-compound-selectors */
|
2020-04-28 07:53:43 -05:00
|
|
|
// Lock and hide body scrollbars
|
|
|
|
position: fixed;
|
|
|
|
|
|
|
|
// Lock and hide sub-menu scrollbars
|
2021-04-28 09:41:07 -05:00
|
|
|
.sub-menu { /* stylelint-disable-line */
|
2020-04-28 07:53:43 -05:00
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 04:06:33 -05:00
|
|
|
}
|
2016-08-12 09:52:10 -05:00
|
|
|
|
2017-12-07 03:33:16 -06:00
|
|
|
.title-page {
|
2021-04-28 09:41:07 -05:00
|
|
|
@include disable-default-a-behaviour;
|
2021-06-07 10:38:31 -05:00
|
|
|
@include margin-right(55px);
|
2021-04-28 09:41:07 -05:00
|
|
|
|
2020-07-23 08:09:15 -05:00
|
|
|
opacity: 0.6;
|
2020-06-09 02:33:28 -05:00
|
|
|
color: pvar(--mainForegroundColor);
|
2017-12-07 03:33:16 -06:00
|
|
|
font-size: 16px;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: $font-semibold;
|
2020-07-23 08:09:15 -05:00
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
|
|
|
|
&.title-page-single {
|
2017-12-07 03:33:16 -06:00
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
2017-12-08 01:39:15 -06:00
|
|
|
|
2019-12-17 06:10:27 -06:00
|
|
|
&.active {
|
2020-07-23 08:09:15 -05:00
|
|
|
border-bottom-color: pvar(--mainColor);
|
2019-12-17 06:10:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
&.title-page-single {
|
|
|
|
font-size: 125%;
|
|
|
|
}
|
|
|
|
|
2021-04-28 09:41:07 -05:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
2020-06-09 02:33:28 -05:00
|
|
|
color: pvar(--mainForegroundColor);
|
2017-12-08 03:41:49 -06:00
|
|
|
}
|
2018-05-09 02:23:27 -05:00
|
|
|
|
2021-04-28 09:41:07 -05:00
|
|
|
&.active,
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&.title-page-single {
|
2020-07-23 08:09:15 -05:00
|
|
|
opacity: 1;
|
2021-04-28 09:41:07 -05:00
|
|
|
outline: 0 hidden !important;
|
2020-07-23 08:09:15 -05:00
|
|
|
}
|
|
|
|
|
2020-02-03 15:33:28 -06:00
|
|
|
@media screen and (max-width: $mobile-view) {
|
2021-06-07 10:38:31 -05:00
|
|
|
@include margin-left(15px);
|
2018-05-09 02:23:27 -05:00
|
|
|
}
|
2017-12-08 01:39:15 -06:00
|
|
|
}
|
2017-12-08 03:41:49 -06:00
|
|
|
|
2020-03-08 11:33:40 -05:00
|
|
|
.title-page-about,
|
|
|
|
.title-page-settings {
|
2020-03-13 14:38:50 -05:00
|
|
|
white-space: nowrap;
|
2020-03-08 11:33:40 -05:00
|
|
|
font-size: 115%;
|
|
|
|
}
|
|
|
|
|
2017-12-08 07:34:17 -06:00
|
|
|
.admin-sub-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2017-12-21 08:24:49 -06:00
|
|
|
// In tables, don't have a hover different background
|
|
|
|
table {
|
2021-04-28 09:41:07 -05:00
|
|
|
.action-button-edit,
|
|
|
|
.action-button-delete {
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&[disabled],
|
|
|
|
&.disabled {
|
2019-01-16 09:05:40 -06:00
|
|
|
background-color: $grey-background-color !important;
|
2017-12-21 08:24:49 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 07:58:00 -05:00
|
|
|
.no-results {
|
|
|
|
height: 40vh;
|
2020-06-15 06:18:22 -05:00
|
|
|
max-height: 500px;
|
|
|
|
|
2018-08-30 07:58:00 -05:00
|
|
|
display: flex;
|
2020-08-07 09:29:30 -05:00
|
|
|
flex-direction: column;
|
2018-08-30 07:58:00 -05:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
}
|
|
|
|
|
2020-02-12 09:58:01 -06:00
|
|
|
.dropdown-item {
|
|
|
|
@include dropdown-with-icon-item;
|
|
|
|
|
|
|
|
my-global-icon {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-10 16:28:31 -05:00
|
|
|
/* offsetTop for scrollToAnchor */
|
|
|
|
|
2020-03-11 13:38:17 -05:00
|
|
|
.anchor {
|
|
|
|
position: relative;
|
2020-08-10 16:28:31 -05:00
|
|
|
top: #{-($header-height + 20px)};
|
|
|
|
}
|
|
|
|
|
|
|
|
.offset-content { // if sub-menu fixed
|
|
|
|
.anchor {
|
|
|
|
top: #{-($header-height + $sub-menu-height + 20px)};
|
|
|
|
}
|
2020-03-11 13:38:17 -05:00
|
|
|
}
|
|
|
|
|
2020-10-29 09:03:46 -05:00
|
|
|
.form-group-description {
|
|
|
|
@extend .text-muted;
|
|
|
|
|
|
|
|
font-size: 90%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2020-11-09 09:08:03 -06:00
|
|
|
ngx-loading-bar {
|
|
|
|
z-index: z(header) + 1 !important;
|
|
|
|
}
|
|
|
|
|
2020-05-01 03:45:07 -05:00
|
|
|
@media screen and (max-width: #{breakpoint(xxl)}) {
|
2021-04-01 04:10:27 -05:00
|
|
|
.main-col {
|
2021-08-06 09:41:08 -05:00
|
|
|
--horizontalMarginContent: #{math.div($not-expanded-horizontal-margins, 2)};
|
2021-04-28 09:41:07 -05:00
|
|
|
--videosHorizontalMarginContent: 30px;
|
2021-04-01 04:10:27 -05:00
|
|
|
|
|
|
|
&.expanded {
|
2021-08-06 09:41:08 -05:00
|
|
|
--horizontalMarginContent: #{math.div($expanded-horizontal-margins, 2)};
|
2021-04-01 04:10:27 -05:00
|
|
|
}
|
2018-09-03 08:01:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-01 03:45:07 -05:00
|
|
|
@media screen and (max-width: #{breakpoint(lg)}) {
|
2021-04-01 10:17:41 -05:00
|
|
|
.main-col {
|
|
|
|
--videosHorizontalMarginContent: #{pvar(--horizontalMarginContent)};
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:14:03 -05:00
|
|
|
/* the following applies from 500px to 900px and is partially overriden from 500px to 800px by changes below to $small-view */
|
2021-03-31 04:21:10 -05:00
|
|
|
.main-col,
|
|
|
|
.main-col.expanded {
|
2021-08-06 09:41:08 -05:00
|
|
|
--horizontalMarginContent: #{math.div($expanded-horizontal-margins, 3)};
|
2018-01-31 04:58:11 -06:00
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
.sub-menu {
|
2021-06-07 10:38:31 -05:00
|
|
|
padding: 0 50px;
|
2018-08-21 09:18:59 -05:00
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
.title-page {
|
|
|
|
font-size: 17px;
|
2018-01-31 04:58:11 -06:00
|
|
|
}
|
2018-01-31 04:38:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-28 17:32:46 -05:00
|
|
|
@media screen and (min-width: $mobile-view) and (max-width: $small-view) {
|
2020-04-28 16:41:05 -05:00
|
|
|
.main-col {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-05 04:20:44 -05:00
|
|
|
@media screen and (max-width: $small-view) {
|
2021-03-31 04:21:10 -05:00
|
|
|
.main-col,
|
|
|
|
.main-col.expanded {
|
|
|
|
--horizontalMarginContent: 15px;
|
2020-04-28 07:53:43 -05:00
|
|
|
|
2021-06-07 10:38:31 -05:00
|
|
|
@include margin-left(0);
|
2020-04-30 17:51:09 -05:00
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
.sub-menu {
|
|
|
|
width: 100vw;
|
2021-06-07 10:38:31 -05:00
|
|
|
padding: 0 15px;
|
2021-03-31 04:21:10 -05:00
|
|
|
margin-bottom: $sub-menu-margin-bottom-small-view;
|
|
|
|
overflow-x: auto;
|
2020-05-01 03:45:07 -05:00
|
|
|
}
|
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
// Use an appropriate offset top when sub-menu fixed
|
|
|
|
.margin-content.offset-content {
|
|
|
|
padding-top: $sub-menu-height + $sub-menu-margin-bottom-small-view;
|
2020-05-01 03:45:07 -05:00
|
|
|
}
|
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
.admin-sub-header {
|
2021-05-07 04:25:47 -05:00
|
|
|
flex-direction: column;
|
2020-05-01 03:45:07 -05:00
|
|
|
}
|
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
my-markdown-textarea {
|
|
|
|
.root {
|
|
|
|
max-width: 100% !important;
|
|
|
|
}
|
2020-05-01 03:45:07 -05:00
|
|
|
}
|
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
input[type=text],
|
|
|
|
input[type=password],
|
|
|
|
input[type=email],
|
|
|
|
textarea,
|
|
|
|
.peertube-select-container {
|
|
|
|
flex-grow: 1;
|
2020-05-01 03:45:07 -05:00
|
|
|
}
|
2020-05-11 04:12:58 -05:00
|
|
|
|
2021-03-31 04:21:10 -05:00
|
|
|
.caption input[type=text] {
|
|
|
|
width: unset !important;
|
|
|
|
flex-grow: 1;
|
2020-04-30 17:51:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|