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 */
|
2020-08-03 23:43:23 +02:00
|
|
|
.dropdown:not(.btn-group):not(.dropdown-root):not(.action-dropdown):not(.input-group-prepend):not(.column-toggle) {
|
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-05-20 11:58:03 +02:00
|
|
|
z-index: z(dropdown) + 1 !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;
|
|
|
|
|
2020-05-02 22:38:18 +02:00
|
|
|
.dropdown-header {
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
|
2019-06-12 12:40:24 +02:00
|
|
|
.dropdown-item {
|
|
|
|
padding: 3px 15px;
|
|
|
|
|
2020-02-05 20:54:37 +01:00
|
|
|
&.active {
|
2020-06-09 09:33:28 +02:00
|
|
|
color: pvar(--mainBackgroundColor) !important;
|
|
|
|
background-color: pvar(--mainHoverColor);
|
2020-02-05 20:54:37 +01:00
|
|
|
opacity: .9;
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
2020-04-01 16:52:59 +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-05-01 10:45:07 +02:00
|
|
|
@media screen and (min-width: #{breakpoint(md)}) {
|
2019-12-20 20:14:58 +01:00
|
|
|
.modal:before {
|
|
|
|
vertical-align: middle;
|
|
|
|
content: " ";
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-dialog {
|
|
|
|
text-align: left;
|
2020-04-13 17:03:01 +02:00
|
|
|
|
|
|
|
&:not(.modal-lg):not(.modal-xl) {
|
|
|
|
min-width: 500px;
|
|
|
|
width: 40vw;
|
|
|
|
max-width: 900px;
|
|
|
|
}
|
2019-12-20 20:14:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2020-06-09 09:33:28 +02:00
|
|
|
background-color: pvar(--mainBackgroundColor);
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-13 23:51:46 +02:00
|
|
|
|
|
|
|
// On desktop browsers, make the content and header horizontally sticked to right not move when modal open and close
|
|
|
|
.modal-open {
|
|
|
|
overflow-y: scroll !important; // Make sure vertical scroll bar is always visible on desktop browsers to get disabled scrollbar effect
|
2020-08-07 23:44:26 +02:00
|
|
|
width: 100vw; // Make sure the content fits all the available width
|
2020-07-13 23:51:46 +02:00
|
|
|
}
|
|
|
|
|
2020-08-17 10:17:54 +02:00
|
|
|
// On touchscreen devices, simply overflow: hidden to avoid detached overlay on scroll
|
|
|
|
@media (hover: none) and (pointer: coarse) {
|
|
|
|
.modal-open, .menu-open {
|
|
|
|
overflow: hidden !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
// On touchscreen devices display content overlay when opened menu
|
|
|
|
.menu-open {
|
|
|
|
.main-col {
|
|
|
|
&::before {
|
|
|
|
background-color: black;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
opacity: 0.75;
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
z-index: z('header') - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-12 12:40:24 +02:00
|
|
|
// 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;
|
2020-07-23 15:09:15 +02:00
|
|
|
font-weight: $font-semibold !important;
|
2019-06-12 12:40:24 +02:00
|
|
|
|
2020-07-23 15:09:15 +02:00
|
|
|
.nav-link {
|
|
|
|
opacity: 0.6 !important;
|
|
|
|
|
|
|
|
&.active, &:hover, &:active, &:focus {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@include disable-default-a-behaviour;
|
|
|
|
|
2020-06-09 09:33:28 +02:00
|
|
|
color: pvar(--mainForegroundColor);
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-23 15:09:15 +02:00
|
|
|
.nav-tabs .nav-link {
|
|
|
|
@include disable-default-a-behaviour;
|
2019-06-12 12:40:24 +02:00
|
|
|
|
2020-07-23 15:09:15 +02:00
|
|
|
color: pvar(--mainForegroundColor);
|
|
|
|
font-weight: $font-semibold;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
opacity: 0.6;
|
2019-06-12 12:40:24 +02:00
|
|
|
|
2020-03-07 00:15:49 +01:00
|
|
|
&.active {
|
2020-07-23 15:09:15 +02:00
|
|
|
color: pvar(--mainForegroundColor);
|
2020-06-09 09:33:28 +02:00
|
|
|
background-color: pvar(--mainBackgroundColor) !important;
|
2020-07-23 15:09:15 +02:00
|
|
|
border-bottom-color: pvar(--mainColor);
|
2020-03-07 00:15:49 +01:00
|
|
|
}
|
2020-07-23 15:09:15 +02:00
|
|
|
|
|
|
|
&.active, &:hover, &:active, &:focus {
|
|
|
|
opacity: 1;
|
2020-03-07 00:15:49 +01:00
|
|
|
}
|
2019-06-12 12:40:24 +02:00
|
|
|
}
|
|
|
|
|
2019-11-08 18:46:19 +01:00
|
|
|
.card {
|
2020-06-09 09:33:28 +02:00
|
|
|
background-color: pvar(--mainBackgroundColor);
|
2019-11-08 18:46:19 +01:00
|
|
|
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-04-03 14:13:24 +02:00
|
|
|
.btn-outline-secondary {
|
|
|
|
border-color: $input-border-color;
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #6c757d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-21 09:35:23 +01:00
|
|
|
.btn-outline-tertiary {
|
2020-06-09 09:33:28 +02:00
|
|
|
color: pvar(--secondaryColor);
|
|
|
|
border-color: pvar(--secondaryColor);
|
2020-01-21 14:28:28 +01:00
|
|
|
|
2020-04-03 14:13:24 +02:00
|
|
|
&:focus-within,
|
|
|
|
&:focus,
|
2020-01-21 09:35:23 +01:00
|
|
|
&:hover {
|
2020-06-09 09:33:28 +02:00
|
|
|
color: pvar(--mainBackgroundColor);
|
|
|
|
background-color: pvar(--secondaryColor);
|
2020-01-21 09:35:23 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-02 11:39:14 +02:00
|
|
|
|
|
|
|
// input box-shadow on focus
|
|
|
|
.form-control {
|
|
|
|
font-size: 15px;
|
2020-06-09 09:33:28 +02:00
|
|
|
color: pvar(--mainForegroundColor);
|
|
|
|
background-color: pvar(--inputBackgroundColor);
|
2020-04-02 11:39:14 +02:00
|
|
|
outline: none;
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
&:focus {
|
2020-06-09 09:33:28 +02:00
|
|
|
box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
|
2020-04-02 11:39:14 +02:00
|
|
|
|
|
|
|
&.input-error {
|
2020-04-03 12:30:52 +02:00
|
|
|
box-shadow: #{$focus-box-shadow-form} #{scale-color($red, $alpha: -75%)};
|
2020-04-02 11:39:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 14:13:24 +02:00
|
|
|
|
2020-05-02 22:38:18 +02:00
|
|
|
.input-group {
|
|
|
|
& > .form-control {
|
|
|
|
flex: initial;
|
|
|
|
}
|
2020-05-03 23:01:57 +02:00
|
|
|
input.form-control {
|
|
|
|
width: unset !important;
|
|
|
|
flex-grow: 1;
|
2020-05-02 22:38:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-group-prepend + input {
|
|
|
|
border-top-left-radius: 0 !important;
|
|
|
|
border-bottom-left-radius: 0 !important;
|
|
|
|
}
|
2020-04-03 14:13:24 +02:00
|
|
|
}
|
2020-05-03 23:01:57 +02:00
|
|
|
|
|
|
|
.has-feedback.has-clear {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
input {
|
|
|
|
padding-right: 1.5rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control-clear {
|
|
|
|
color: rgba(0, 0, 0, 0.4);
|
|
|
|
/*
|
|
|
|
* Enable pointer events as they have been disabled since Bootstrap 3.3
|
|
|
|
* See https://github.com/twbs/bootstrap/pull/14104
|
|
|
|
*/
|
|
|
|
pointer-events: all;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
right: .5rem;
|
|
|
|
height: 95%;
|
2020-07-23 21:30:04 +02:00
|
|
|
font-size: 14px;
|
2020-05-03 23:01:57 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: rgba(0, 0, 0, 0.7);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input:placeholder-shown + .form-control-clear {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|