2019-06-12 05:40:24 -05:00
|
|
|
$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
|
|
|
|
@import '_bootstrap';
|
|
|
|
|
|
|
|
@import '_variables';
|
|
|
|
@import '_mixins';
|
|
|
|
|
|
|
|
// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
|
|
|
|
.glyphicon-refresh-animate {
|
|
|
|
animation: spin .7s infinite linear;
|
|
|
|
}
|
|
|
|
|
2020-01-20 08:12:51 -06:00
|
|
|
.flex-auto {
|
|
|
|
flex: auto;
|
|
|
|
}
|
|
|
|
|
2020-02-28 06:52:21 -06:00
|
|
|
.c-hand {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-06-12 05:40:24 -05:00
|
|
|
@keyframes spin {
|
2020-01-21 07:28:28 -06:00
|
|
|
from {
|
|
|
|
transform: scale(1) rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: scale(1) rotate(360deg);
|
|
|
|
}
|
2019-06-12 05:40:24 -05:00
|
|
|
}
|
|
|
|
|
2020-02-18 05:01:08 -06:00
|
|
|
/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */
|
2020-04-13 10:03:01 -05:00
|
|
|
.dropdown:not(.btn-group):not(.dropdown-root):not(.action-dropdown) {
|
2020-03-09 05:11:09 -05:00
|
|
|
z-index: z(dropdown) !important;
|
2020-03-08 12:02:14 -05:00
|
|
|
|
2020-03-09 05:11:09 -05:00
|
|
|
&.list-overflow-menu,
|
2020-03-08 12:02:14 -05:00
|
|
|
&.parent-entry {
|
2020-03-09 05:11:09 -05:00
|
|
|
z-index: z(header) - 1 !important;
|
2020-03-08 12:02:14 -05:00
|
|
|
}
|
2020-02-12 09:58:01 -06:00
|
|
|
}
|
|
|
|
|
2019-06-12 05:40:24 -05:00
|
|
|
.dropdown-menu {
|
|
|
|
border-radius: 3px;
|
2019-12-08 13:16:24 -06:00
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
2019-06-12 05:40:24 -05:00
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
padding: 3px 15px;
|
|
|
|
|
2020-02-05 13:54:37 -06:00
|
|
|
&.active {
|
|
|
|
color: var(--mainBackgroundColor) !important;
|
|
|
|
background-color: var(--mainHoverColor);
|
|
|
|
opacity: .9;
|
2019-06-12 05:40:24 -05:00
|
|
|
}
|
2020-04-01 09:52:59 -05:00
|
|
|
|
2020-02-28 06:52:21 -06:00
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-06-12 05:40:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 13:14:58 -06:00
|
|
|
|
2020-05-01 03:45:07 -05:00
|
|
|
@media screen and (min-width: #{breakpoint(md)}) {
|
2019-12-20 13:14:58 -06:00
|
|
|
.modal:before {
|
|
|
|
vertical-align: middle;
|
|
|
|
content: " ";
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-dialog {
|
|
|
|
text-align: left;
|
2020-04-13 10:03:01 -05:00
|
|
|
|
|
|
|
&:not(.modal-lg):not(.modal-xl) {
|
|
|
|
min-width: 500px;
|
|
|
|
width: 40vw;
|
|
|
|
max-width: 900px;
|
|
|
|
}
|
2019-12-20 13:14:58 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-12 05:40:24 -05:00
|
|
|
.modal {
|
2019-12-20 13:14:58 -06:00
|
|
|
text-align: center;
|
|
|
|
|
2019-06-12 05:40:24 -05:00
|
|
|
.modal-content {
|
|
|
|
background-color: var(--mainBackgroundColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
border-bottom: none;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
.modal-title {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
}
|
|
|
|
|
|
|
|
my-global-icon {
|
2020-03-06 09:58:55 -06:00
|
|
|
@include icon(22px);
|
2019-06-12 05:40:24 -05:00
|
|
|
|
|
|
|
position: relative;
|
2020-03-06 09:58:55 -06:00
|
|
|
top: 5px;
|
2019-06-12 05:40:24 -05:00
|
|
|
float: right;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-03-06 09:58:55 -06:00
|
|
|
opacity: .5;
|
2020-03-10 08:39:40 -05:00
|
|
|
|
|
|
|
&[iconName="cross"] {
|
|
|
|
@include icon(16px);
|
|
|
|
top: -3px;
|
|
|
|
}
|
2019-06-12 05:40:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.inputs {
|
|
|
|
margin-bottom: 0;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
.action-button-cancel {
|
|
|
|
@include peertube-button;
|
2020-03-06 09:58:55 -06:00
|
|
|
@include tertiary-button;
|
2019-06-12 05:40:24 -05:00
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-button-submit {
|
|
|
|
@include peertube-button;
|
|
|
|
@include orange-button;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nav customizations
|
|
|
|
.nav .nav-link {
|
|
|
|
display: flex !important;
|
|
|
|
align-items: center;
|
|
|
|
height: 30px !important;
|
|
|
|
padding: 10px 15px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav.nav-pills {
|
|
|
|
font-size: 16px !important;
|
|
|
|
|
|
|
|
.nav-link.active {
|
|
|
|
font-weight: $font-semibold !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
|
|
|
|
color: var(--mainForegroundColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 09:52:59 -05:00
|
|
|
.nav-tabs {
|
2019-06-12 05:40:24 -05:00
|
|
|
|
|
|
|
.nav-link {
|
2020-04-01 09:52:59 -05:00
|
|
|
@include disable-default-a-behaviour;
|
2019-06-12 05:40:24 -05:00
|
|
|
|
2020-04-01 09:52:59 -05:00
|
|
|
color: var(--mainForegroundColor) !important;
|
2019-06-12 05:40:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 17:15:49 -06:00
|
|
|
.nav-tabs .nav-link {
|
|
|
|
&:not(.active) {
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
}
|
|
|
|
&.active {
|
2020-03-08 11:33:40 -05:00
|
|
|
font-weight: $font-semibold;
|
2020-03-06 17:15:49 -06:00
|
|
|
background-color: var(--mainBackgroundColor) !important;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid var(--mainColor);
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
border-top-color: transparent;
|
|
|
|
border-left-color: transparent;
|
|
|
|
border-right-color: transparent;
|
|
|
|
}
|
2019-06-12 05:40:24 -05:00
|
|
|
}
|
|
|
|
|
2019-11-08 11:46:19 -06:00
|
|
|
.card {
|
|
|
|
background-color: var(--mainBackgroundColor);
|
|
|
|
border-color: #dee2e6;
|
|
|
|
}
|
|
|
|
|
2019-06-12 05:40:24 -05:00
|
|
|
.collapse-transition {
|
|
|
|
// Animation when we show/hide the filters
|
|
|
|
transition: max-height 0.3s;
|
|
|
|
display: block !important;
|
|
|
|
overflow: hidden !important;
|
|
|
|
max-height: 0;
|
|
|
|
|
|
|
|
&.show {
|
|
|
|
max-height: 1500px;
|
|
|
|
}
|
|
|
|
}
|
2019-12-26 12:46:59 -06:00
|
|
|
|
|
|
|
.dropdown-divider {
|
|
|
|
margin: 0.3rem 0;
|
2020-01-10 07:01:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ngb-modal-backdrop {
|
2020-02-13 08:09:31 -06:00
|
|
|
z-index: z(modal) - 1 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngb-modal-window {
|
|
|
|
z-index: z(modal) !important;
|
2020-01-10 07:01:13 -06:00
|
|
|
}
|
2020-01-21 02:35:23 -06:00
|
|
|
|
2020-02-18 05:01:08 -06:00
|
|
|
ngb-popover-window {
|
|
|
|
z-index: z(popover) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngb-tooltip-window {
|
|
|
|
z-index: z(tooltip) !important;
|
|
|
|
}
|
|
|
|
|
2020-04-03 07:13:24 -05:00
|
|
|
.btn-outline-secondary {
|
|
|
|
border-color: $input-border-color;
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #6c757d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-21 02:35:23 -06:00
|
|
|
.btn-outline-tertiary {
|
2020-01-21 07:28:28 -06:00
|
|
|
color: var(--secondaryColor);
|
2020-01-21 02:35:23 -06:00
|
|
|
border-color: var(--secondaryColor);
|
2020-01-21 07:28:28 -06:00
|
|
|
|
2020-04-03 07:13:24 -05:00
|
|
|
&:focus-within,
|
|
|
|
&:focus,
|
2020-01-21 02:35:23 -06:00
|
|
|
&:hover {
|
|
|
|
color: var(--mainBackgroundColor);
|
|
|
|
background-color: var(--secondaryColor);
|
|
|
|
}
|
|
|
|
}
|
2020-04-02 04:39:14 -05:00
|
|
|
|
|
|
|
// input box-shadow on focus
|
|
|
|
.form-control {
|
|
|
|
font-size: 15px;
|
|
|
|
color: var(--mainForegroundColor);
|
|
|
|
background-color: var(--inputBackgroundColor);
|
|
|
|
outline: none;
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
&:focus {
|
2020-04-03 05:30:52 -05:00
|
|
|
box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest);
|
2020-04-02 04:39:14 -05:00
|
|
|
|
|
|
|
&.input-error {
|
2020-04-03 05:30:52 -05:00
|
|
|
box-shadow: #{$focus-box-shadow-form} #{scale-color($red, $alpha: -75%)};
|
2020-04-02 04:39:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 07:13:24 -05:00
|
|
|
|
|
|
|
.input-group > .form-control {
|
|
|
|
flex: initial;
|
|
|
|
}
|