2019-06-12 12:40:24 +02: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 15:12:51 +01:00
|
|
|
.flex-auto {
|
|
|
|
flex: auto;
|
|
|
|
}
|
|
|
|
|
2020-02-28 13:52:21 +01:00
|
|
|
.c-hand {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-06-12 12:40:24 +02:00
|
|
|
@keyframes spin {
|
2020-01-21 14:28:28 +01:00
|
|
|
from {
|
|
|
|
transform: scale(1) rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: scale(1) rotate(360deg);
|
|
|
|
}
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
|
2020-02-18 12:01:08 +01:00
|
|
|
/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */
|
|
|
|
.dropdown:not(.btn-group) {
|
2020-03-09 11:11:09 +01:00
|
|
|
z-index: z(dropdown) !important;
|
2020-03-08 18:02:14 +01:00
|
|
|
|
2020-03-09 11:11:09 +01:00
|
|
|
&.list-overflow-menu,
|
2020-03-08 18:02:14 +01:00
|
|
|
&.parent-entry {
|
2020-03-09 11:11:09 +01:00
|
|
|
z-index: z(header) - 1 !important;
|
2020-03-08 18:02:14 +01:00
|
|
|
}
|
2020-02-12 16:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-12 12:40:24 +02:00
|
|
|
.dropdown-menu {
|
2020-02-18 12:01:08 +01:00
|
|
|
z-index: z(dropdown) !important;
|
2019-06-12 12:40:24 +02:00
|
|
|
border-radius: 3px;
|
2019-12-08 20:16:24 +01: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 12:40:24 +02:00
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
padding: 3px 15px;
|
|
|
|
|
2020-02-05 20:54:37 +01:00
|
|
|
&.active {
|
|
|
|
color: var(--mainBackgroundColor) !important;
|
|
|
|
background-color: var(--mainHoverColor);
|
|
|
|
opacity: .9;
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
2020-02-28 13:52:21 +01:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 20:14:58 +01:00
|
|
|
|
2020-02-04 16:44:53 +01:00
|
|
|
@media screen and (min-width: #{map-get($grid-breakpoints, md)}) {
|
2019-12-20 20:14:58 +01:00
|
|
|
.modal:before {
|
|
|
|
vertical-align: middle;
|
|
|
|
content: " ";
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-dialog {
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: middle;
|
|
|
|
min-width: 500px;
|
|
|
|
width: 40vw;
|
|
|
|
max-width: 900px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-12 12:40:24 +02:00
|
|
|
.modal {
|
2019-12-20 20:14:58 +01:00
|
|
|
text-align: center;
|
|
|
|
|
2019-06-12 12:40:24 +02: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 16:58:55 +01:00
|
|
|
@include icon(22px);
|
2019-06-12 12:40:24 +02:00
|
|
|
|
|
|
|
position: relative;
|
2020-03-06 16:58:55 +01:00
|
|
|
top: 5px;
|
2019-06-12 12:40:24 +02:00
|
|
|
float: right;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-03-06 16:58:55 +01:00
|
|
|
opacity: .5;
|
2020-03-10 14:39:40 +01:00
|
|
|
|
|
|
|
&[iconName="cross"] {
|
|
|
|
@include icon(16px);
|
|
|
|
top: -3px;
|
|
|
|
}
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.inputs {
|
|
|
|
margin-bottom: 0;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
.action-button-cancel {
|
|
|
|
@include peertube-button;
|
2020-03-06 16:58:55 +01:00
|
|
|
@include tertiary-button;
|
2019-06-12 12:40:24 +02: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-03-10 14:39:40 +01:00
|
|
|
ngb-tabset {
|
2019-06-12 12:40:24 +02:00
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
&, & a {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
|
|
|
|
color: var(--mainForegroundColor) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-pills .nav-link.active {
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-07 00:15:49 +01:00
|
|
|
.nav-tabs .nav-link {
|
|
|
|
&:not(.active) {
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
}
|
|
|
|
&.active {
|
2020-03-08 17:33:40 +01:00
|
|
|
font-weight: $font-semibold;
|
2020-03-07 00:15:49 +01: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 12:40:24 +02:00
|
|
|
}
|
|
|
|
|
2019-11-08 18:46:19 +01:00
|
|
|
.card {
|
|
|
|
background-color: var(--mainBackgroundColor);
|
|
|
|
border-color: #dee2e6;
|
|
|
|
}
|
|
|
|
|
2019-06-12 12:40:24 +02: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 19:46:59 +01:00
|
|
|
|
|
|
|
.dropdown-divider {
|
|
|
|
margin: 0.3rem 0;
|
2020-01-10 14:01:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ngb-modal-backdrop {
|
2020-02-13 15:09:31 +01:00
|
|
|
z-index: z(modal) - 1 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngb-modal-window {
|
|
|
|
z-index: z(modal) !important;
|
2020-01-10 14:01:13 +01:00
|
|
|
}
|
2020-01-21 09:35:23 +01:00
|
|
|
|
2020-02-18 12:01:08 +01:00
|
|
|
ngb-popover-window {
|
|
|
|
z-index: z(popover) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngb-tooltip-window {
|
|
|
|
z-index: z(tooltip) !important;
|
|
|
|
}
|
|
|
|
|
2020-01-21 09:35:23 +01:00
|
|
|
.btn-outline-tertiary {
|
2020-01-21 14:28:28 +01:00
|
|
|
color: var(--secondaryColor);
|
2020-01-21 09:35:23 +01:00
|
|
|
border-color: var(--secondaryColor);
|
2020-01-21 14:28:28 +01:00
|
|
|
|
2020-01-21 09:35:23 +01:00
|
|
|
&:hover {
|
|
|
|
color: var(--mainBackgroundColor);
|
|
|
|
background-color: var(--secondaryColor);
|
|
|
|
}
|
|
|
|
}
|