nodebb-theme-flawless-rp 1.0.19 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/less/persona.css +1273 -60
- package/package.json +1 -1
package/less/persona.css
CHANGED
|
@@ -693,7 +693,7 @@ progress {
|
|
|
693
693
|
color: #6c757d;
|
|
694
694
|
}
|
|
695
695
|
.blockquote-footer::before {
|
|
696
|
-
content: "—
|
|
696
|
+
content: "— ";
|
|
697
697
|
}
|
|
698
698
|
|
|
699
699
|
.img-fluid {
|
|
@@ -2101,7 +2101,7 @@ progress {
|
|
|
2101
2101
|
color: var(--bs-secondary-color);
|
|
2102
2102
|
}
|
|
2103
2103
|
|
|
2104
|
-
.form-control {
|
|
2104
|
+
.form-control, .bootstrap-tagsinput {
|
|
2105
2105
|
display: block;
|
|
2106
2106
|
width: 100%;
|
|
2107
2107
|
padding: 0.375rem 0.75rem;
|
|
@@ -2117,41 +2117,41 @@ progress {
|
|
|
2117
2117
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
2118
2118
|
}
|
|
2119
2119
|
@media (prefers-reduced-motion: reduce) {
|
|
2120
|
-
.form-control {
|
|
2120
|
+
.form-control, .bootstrap-tagsinput {
|
|
2121
2121
|
transition: none;
|
|
2122
2122
|
}
|
|
2123
2123
|
}
|
|
2124
|
-
.form-control[type=file] {
|
|
2124
|
+
.form-control[type=file], [type=file].bootstrap-tagsinput {
|
|
2125
2125
|
overflow: hidden;
|
|
2126
2126
|
}
|
|
2127
|
-
.form-control[type=file]:not(:disabled):not([readonly]) {
|
|
2127
|
+
.form-control[type=file]:not(:disabled):not([readonly]), [type=file].bootstrap-tagsinput:not(:disabled):not([readonly]) {
|
|
2128
2128
|
cursor: pointer;
|
|
2129
2129
|
}
|
|
2130
|
-
.form-control:focus {
|
|
2130
|
+
.form-control:focus, .bootstrap-tagsinput:focus {
|
|
2131
2131
|
color: var(--bs-body-color);
|
|
2132
2132
|
background-color: var(--bs-body-bg);
|
|
2133
2133
|
border-color: rgb(153.2170454545, 188.6386363636, 219.2079545455);
|
|
2134
2134
|
outline: 0;
|
|
2135
2135
|
box-shadow: 0 0 0 0.25rem rgba(51.4340909091, 122.2772727273, 183.4159090909, 0.25);
|
|
2136
2136
|
}
|
|
2137
|
-
.form-control::-webkit-date-and-time-value {
|
|
2137
|
+
.form-control::-webkit-date-and-time-value, .bootstrap-tagsinput::-webkit-date-and-time-value {
|
|
2138
2138
|
min-width: 85px;
|
|
2139
2139
|
height: 1.5em;
|
|
2140
2140
|
margin: 0;
|
|
2141
2141
|
}
|
|
2142
|
-
.form-control::-webkit-datetime-edit {
|
|
2142
|
+
.form-control::-webkit-datetime-edit, .bootstrap-tagsinput::-webkit-datetime-edit {
|
|
2143
2143
|
display: block;
|
|
2144
2144
|
padding: 0;
|
|
2145
2145
|
}
|
|
2146
|
-
.form-control::placeholder {
|
|
2146
|
+
.form-control::placeholder, .bootstrap-tagsinput::placeholder {
|
|
2147
2147
|
color: var(--bs-secondary-color);
|
|
2148
2148
|
opacity: 1;
|
|
2149
2149
|
}
|
|
2150
|
-
.form-control:disabled {
|
|
2150
|
+
.form-control:disabled, .bootstrap-tagsinput:disabled {
|
|
2151
2151
|
background-color: var(--bs-secondary-bg);
|
|
2152
2152
|
opacity: 1;
|
|
2153
2153
|
}
|
|
2154
|
-
.form-control::file-selector-button {
|
|
2154
|
+
.form-control::file-selector-button, .bootstrap-tagsinput::file-selector-button {
|
|
2155
2155
|
padding: 0.375rem 0.75rem;
|
|
2156
2156
|
margin: -0.375rem -0.75rem;
|
|
2157
2157
|
margin-inline-end: 0.75rem;
|
|
@@ -2166,11 +2166,11 @@ progress {
|
|
|
2166
2166
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
2167
2167
|
}
|
|
2168
2168
|
@media (prefers-reduced-motion: reduce) {
|
|
2169
|
-
.form-control::file-selector-button {
|
|
2169
|
+
.form-control::file-selector-button, .bootstrap-tagsinput::file-selector-button {
|
|
2170
2170
|
transition: none;
|
|
2171
2171
|
}
|
|
2172
2172
|
}
|
|
2173
|
-
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
2173
|
+
.form-control:hover:not(:disabled):not([readonly])::file-selector-button, .bootstrap-tagsinput:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
2174
2174
|
background-color: var(--bs-secondary-bg);
|
|
2175
2175
|
}
|
|
2176
2176
|
|
|
@@ -2215,7 +2215,7 @@ progress {
|
|
|
2215
2215
|
margin-inline-end: 1rem;
|
|
2216
2216
|
}
|
|
2217
2217
|
|
|
2218
|
-
textarea.form-control {
|
|
2218
|
+
textarea.form-control, textarea.bootstrap-tagsinput {
|
|
2219
2219
|
min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
|
|
2220
2220
|
}
|
|
2221
2221
|
textarea.form-control-sm {
|
|
@@ -2513,7 +2513,7 @@ textarea.form-control-lg {
|
|
|
2513
2513
|
.form-floating {
|
|
2514
2514
|
position: relative;
|
|
2515
2515
|
}
|
|
2516
|
-
.form-floating > .form-control,
|
|
2516
|
+
.form-floating > .form-control, .form-floating > .bootstrap-tagsinput,
|
|
2517
2517
|
.form-floating > .form-control-plaintext,
|
|
2518
2518
|
.form-floating > .form-select {
|
|
2519
2519
|
height: calc(3.5rem + calc(var(--bs-border-width) * 2));
|
|
@@ -2543,21 +2543,21 @@ textarea.form-control-lg {
|
|
|
2543
2543
|
transition: none;
|
|
2544
2544
|
}
|
|
2545
2545
|
}
|
|
2546
|
-
.form-floating > .form-control,
|
|
2546
|
+
.form-floating > .form-control, .form-floating > .bootstrap-tagsinput,
|
|
2547
2547
|
.form-floating > .form-control-plaintext {
|
|
2548
2548
|
padding: 1rem 0.75rem;
|
|
2549
2549
|
}
|
|
2550
|
-
.form-floating > .form-control::placeholder,
|
|
2550
|
+
.form-floating > .form-control::placeholder, .form-floating > .bootstrap-tagsinput::placeholder,
|
|
2551
2551
|
.form-floating > .form-control-plaintext::placeholder {
|
|
2552
2552
|
color: transparent;
|
|
2553
2553
|
}
|
|
2554
|
-
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
|
|
2554
|
+
.form-floating > .form-control:focus, .form-floating > .bootstrap-tagsinput:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .bootstrap-tagsinput:not(:placeholder-shown),
|
|
2555
2555
|
.form-floating > .form-control-plaintext:focus,
|
|
2556
2556
|
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
|
|
2557
2557
|
padding-top: 1.625rem;
|
|
2558
2558
|
padding-bottom: 0.625rem;
|
|
2559
2559
|
}
|
|
2560
|
-
.form-floating > .form-control:-webkit-autofill,
|
|
2560
|
+
.form-floating > .form-control:-webkit-autofill, .form-floating > .bootstrap-tagsinput:-webkit-autofill,
|
|
2561
2561
|
.form-floating > .form-control-plaintext:-webkit-autofill {
|
|
2562
2562
|
padding-top: 1.625rem;
|
|
2563
2563
|
padding-bottom: 0.625rem;
|
|
@@ -2567,13 +2567,14 @@ textarea.form-control-lg {
|
|
|
2567
2567
|
padding-bottom: 0.625rem;
|
|
2568
2568
|
padding-left: 0.75rem;
|
|
2569
2569
|
}
|
|
2570
|
-
.form-floating > .form-control:focus ~ label,
|
|
2570
|
+
.form-floating > .form-control:focus ~ label, .form-floating > .bootstrap-tagsinput:focus ~ label,
|
|
2571
2571
|
.form-floating > .form-control:not(:placeholder-shown) ~ label,
|
|
2572
|
+
.form-floating > .bootstrap-tagsinput:not(:placeholder-shown) ~ label,
|
|
2572
2573
|
.form-floating > .form-control-plaintext ~ label,
|
|
2573
2574
|
.form-floating > .form-select ~ label {
|
|
2574
2575
|
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
2575
2576
|
}
|
|
2576
|
-
.form-floating > .form-control:-webkit-autofill ~ label {
|
|
2577
|
+
.form-floating > .form-control:-webkit-autofill ~ label, .form-floating > .bootstrap-tagsinput:-webkit-autofill ~ label {
|
|
2577
2578
|
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
2578
2579
|
}
|
|
2579
2580
|
.form-floating > textarea:focus ~ label::after,
|
|
@@ -2603,7 +2604,7 @@ textarea.form-control-lg {
|
|
|
2603
2604
|
align-items: stretch;
|
|
2604
2605
|
width: 100%;
|
|
2605
2606
|
}
|
|
2606
|
-
.input-group > .form-control,
|
|
2607
|
+
.input-group > .form-control, .input-group > .bootstrap-tagsinput,
|
|
2607
2608
|
.input-group > .form-select,
|
|
2608
2609
|
.input-group > .form-floating {
|
|
2609
2610
|
position: relative;
|
|
@@ -2611,7 +2612,7 @@ textarea.form-control-lg {
|
|
|
2611
2612
|
width: 1%;
|
|
2612
2613
|
min-width: 0;
|
|
2613
2614
|
}
|
|
2614
|
-
.input-group > .form-control:focus,
|
|
2615
|
+
.input-group > .form-control:focus, .input-group > .bootstrap-tagsinput:focus,
|
|
2615
2616
|
.input-group > .form-select:focus,
|
|
2616
2617
|
.input-group > .form-floating:focus-within {
|
|
2617
2618
|
z-index: 5;
|
|
@@ -2638,7 +2639,7 @@ textarea.form-control-lg {
|
|
|
2638
2639
|
border: var(--bs-border-width) solid var(--bs-border-color);
|
|
2639
2640
|
}
|
|
2640
2641
|
|
|
2641
|
-
.input-group-lg > .form-control,
|
|
2642
|
+
.input-group-lg > .form-control, .input-group-lg > .bootstrap-tagsinput,
|
|
2642
2643
|
.input-group-lg > .form-select,
|
|
2643
2644
|
.input-group-lg > .input-group-text,
|
|
2644
2645
|
.input-group-lg > .btn {
|
|
@@ -2646,7 +2647,7 @@ textarea.form-control-lg {
|
|
|
2646
2647
|
font-size: 1.09375rem;
|
|
2647
2648
|
}
|
|
2648
2649
|
|
|
2649
|
-
.input-group-sm > .form-control,
|
|
2650
|
+
.input-group-sm > .form-control, .input-group-sm > .bootstrap-tagsinput,
|
|
2650
2651
|
.input-group-sm > .form-select,
|
|
2651
2652
|
.input-group-sm > .input-group-text,
|
|
2652
2653
|
.input-group-sm > .btn {
|
|
@@ -2690,7 +2691,7 @@ textarea.form-control-lg {
|
|
|
2690
2691
|
display: block;
|
|
2691
2692
|
}
|
|
2692
2693
|
|
|
2693
|
-
.was-validated .form-control:valid, .form-control.is-valid {
|
|
2694
|
+
.was-validated .form-control:valid, .was-validated .bootstrap-tagsinput:valid, .form-control.is-valid, .is-valid.bootstrap-tagsinput {
|
|
2694
2695
|
border-color: var(--bs-form-valid-border-color);
|
|
2695
2696
|
padding-right: calc(1.5em + 0.75rem);
|
|
2696
2697
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%235cb85c' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
|
|
@@ -2698,12 +2699,12 @@ textarea.form-control-lg {
|
|
|
2698
2699
|
background-position: right calc(0.375em + 0.1875rem) center;
|
|
2699
2700
|
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
|
|
2700
2701
|
}
|
|
2701
|
-
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
|
|
2702
|
+
.was-validated .form-control:valid:focus, .was-validated .bootstrap-tagsinput:valid:focus, .form-control.is-valid:focus, .is-valid.bootstrap-tagsinput:focus {
|
|
2702
2703
|
border-color: var(--bs-form-valid-border-color);
|
|
2703
2704
|
box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
|
|
2704
2705
|
}
|
|
2705
2706
|
|
|
2706
|
-
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
|
|
2707
|
+
.was-validated textarea.form-control:valid, .was-validated textarea.bootstrap-tagsinput:valid, textarea.form-control.is-valid, textarea.is-valid.bootstrap-tagsinput {
|
|
2707
2708
|
padding-right: calc(1.5em + 0.75rem);
|
|
2708
2709
|
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
|
|
2709
2710
|
}
|
|
@@ -2743,7 +2744,7 @@ textarea.form-control-lg {
|
|
|
2743
2744
|
margin-left: 0.5em;
|
|
2744
2745
|
}
|
|
2745
2746
|
|
|
2746
|
-
.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
|
|
2747
|
+
.was-validated .input-group > .form-control:not(:focus):valid, .was-validated .input-group > .bootstrap-tagsinput:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .input-group > .bootstrap-tagsinput:not(:focus).is-valid,
|
|
2747
2748
|
.was-validated .input-group > .form-select:not(:focus):valid,
|
|
2748
2749
|
.input-group > .form-select:not(:focus).is-valid,
|
|
2749
2750
|
.was-validated .input-group > .form-floating:not(:focus-within):valid,
|
|
@@ -2779,7 +2780,7 @@ textarea.form-control-lg {
|
|
|
2779
2780
|
display: block;
|
|
2780
2781
|
}
|
|
2781
2782
|
|
|
2782
|
-
.was-validated .form-control:invalid, .form-control.is-invalid {
|
|
2783
|
+
.was-validated .form-control:invalid, .was-validated .bootstrap-tagsinput:invalid, .form-control.is-invalid, .is-invalid.bootstrap-tagsinput {
|
|
2783
2784
|
border-color: var(--bs-form-invalid-border-color);
|
|
2784
2785
|
padding-right: calc(1.5em + 0.75rem);
|
|
2785
2786
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23d9534f'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d9534f' stroke='none'/%3e%3c/svg%3e");
|
|
@@ -2787,12 +2788,12 @@ textarea.form-control-lg {
|
|
|
2787
2788
|
background-position: right calc(0.375em + 0.1875rem) center;
|
|
2788
2789
|
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
|
|
2789
2790
|
}
|
|
2790
|
-
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
|
|
2791
|
+
.was-validated .form-control:invalid:focus, .was-validated .bootstrap-tagsinput:invalid:focus, .form-control.is-invalid:focus, .is-invalid.bootstrap-tagsinput:focus {
|
|
2791
2792
|
border-color: var(--bs-form-invalid-border-color);
|
|
2792
2793
|
box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
|
|
2793
2794
|
}
|
|
2794
2795
|
|
|
2795
|
-
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
|
|
2796
|
+
.was-validated textarea.form-control:invalid, .was-validated textarea.bootstrap-tagsinput:invalid, textarea.form-control.is-invalid, textarea.is-invalid.bootstrap-tagsinput {
|
|
2796
2797
|
padding-right: calc(1.5em + 0.75rem);
|
|
2797
2798
|
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
|
|
2798
2799
|
}
|
|
@@ -2832,7 +2833,7 @@ textarea.form-control-lg {
|
|
|
2832
2833
|
margin-left: 0.5em;
|
|
2833
2834
|
}
|
|
2834
2835
|
|
|
2835
|
-
.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
|
|
2836
|
+
.was-validated .input-group > .form-control:not(:focus):invalid, .was-validated .input-group > .bootstrap-tagsinput:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .input-group > .bootstrap-tagsinput:not(:focus).is-invalid,
|
|
2836
2837
|
.was-validated .input-group > .form-select:not(:focus):invalid,
|
|
2837
2838
|
.input-group > .form-select:not(:focus).is-invalid,
|
|
2838
2839
|
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
|
|
@@ -19820,28 +19821,6 @@ readers do not read off random characters that represent icons */
|
|
|
19820
19821
|
font-weight: 900;
|
|
19821
19822
|
}
|
|
19822
19823
|
|
|
19823
|
-
/*!
|
|
19824
|
-
* Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
|
|
19825
|
-
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
19826
|
-
* Copyright 2024 Fonticons, Inc.
|
|
19827
|
-
*/
|
|
19828
|
-
:root, :host {
|
|
19829
|
-
--fa-style-family-classic: 'Font Awesome 6 Free';
|
|
19830
|
-
--fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free';
|
|
19831
|
-
}
|
|
19832
|
-
|
|
19833
|
-
@font-face {
|
|
19834
|
-
font-family: "Font Awesome 6 Free";
|
|
19835
|
-
font-style: normal;
|
|
19836
|
-
font-weight: 400;
|
|
19837
|
-
font-display: block;
|
|
19838
|
-
src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
|
|
19839
|
-
}
|
|
19840
|
-
.far,
|
|
19841
|
-
.fa-regular {
|
|
19842
|
-
font-weight: 400;
|
|
19843
|
-
}
|
|
19844
|
-
|
|
19845
19824
|
/*!
|
|
19846
19825
|
* Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
|
|
19847
19826
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
@@ -21984,6 +21963,1240 @@ readers do not read off random characters that represent icons */
|
|
|
21984
21963
|
--fa: "\f3f6";
|
|
21985
21964
|
}
|
|
21986
21965
|
|
|
21966
|
+
/*!
|
|
21967
|
+
* Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
|
|
21968
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
21969
|
+
* Copyright 2024 Fonticons, Inc.
|
|
21970
|
+
*/
|
|
21971
|
+
:root, :host {
|
|
21972
|
+
--fa-style-family-classic: 'Font Awesome 6 Free';
|
|
21973
|
+
--fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free';
|
|
21974
|
+
}
|
|
21975
|
+
|
|
21976
|
+
@font-face {
|
|
21977
|
+
font-family: "Font Awesome 6 Free";
|
|
21978
|
+
font-style: normal;
|
|
21979
|
+
font-weight: 400;
|
|
21980
|
+
font-display: block;
|
|
21981
|
+
src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
|
|
21982
|
+
}
|
|
21983
|
+
.far,
|
|
21984
|
+
.fa-regular {
|
|
21985
|
+
font-weight: 400;
|
|
21986
|
+
}
|
|
21987
|
+
|
|
21988
|
+
.line-clamp-1 {
|
|
21989
|
+
overflow: hidden;
|
|
21990
|
+
display: -webkit-box;
|
|
21991
|
+
-webkit-box-orient: vertical;
|
|
21992
|
+
-webkit-line-clamp: 1;
|
|
21993
|
+
white-space: initial;
|
|
21994
|
+
max-height: calc(1.5em * 1);
|
|
21995
|
+
}
|
|
21996
|
+
.line-clamp-1 > p {
|
|
21997
|
+
margin-bottom: 1.5em;
|
|
21998
|
+
}
|
|
21999
|
+
|
|
22000
|
+
.line-clamp-sm-1 {
|
|
22001
|
+
overflow: hidden;
|
|
22002
|
+
display: -webkit-box;
|
|
22003
|
+
-webkit-box-orient: vertical;
|
|
22004
|
+
-webkit-line-clamp: 1;
|
|
22005
|
+
white-space: initial;
|
|
22006
|
+
max-height: calc(1.25em * 1);
|
|
22007
|
+
}
|
|
22008
|
+
.line-clamp-sm-1 > p {
|
|
22009
|
+
margin-bottom: 1.25em;
|
|
22010
|
+
}
|
|
22011
|
+
|
|
22012
|
+
.line-clamp-2 {
|
|
22013
|
+
overflow: hidden;
|
|
22014
|
+
display: -webkit-box;
|
|
22015
|
+
-webkit-box-orient: vertical;
|
|
22016
|
+
-webkit-line-clamp: 2;
|
|
22017
|
+
white-space: initial;
|
|
22018
|
+
max-height: calc(1.5em * 2);
|
|
22019
|
+
}
|
|
22020
|
+
.line-clamp-2 > p {
|
|
22021
|
+
margin-bottom: 1.5em;
|
|
22022
|
+
}
|
|
22023
|
+
|
|
22024
|
+
.line-clamp-sm-2 {
|
|
22025
|
+
overflow: hidden;
|
|
22026
|
+
display: -webkit-box;
|
|
22027
|
+
-webkit-box-orient: vertical;
|
|
22028
|
+
-webkit-line-clamp: 2;
|
|
22029
|
+
white-space: initial;
|
|
22030
|
+
max-height: calc(1.25em * 2);
|
|
22031
|
+
}
|
|
22032
|
+
.line-clamp-sm-2 > p {
|
|
22033
|
+
margin-bottom: 1.25em;
|
|
22034
|
+
}
|
|
22035
|
+
|
|
22036
|
+
.line-clamp-3 {
|
|
22037
|
+
overflow: hidden;
|
|
22038
|
+
display: -webkit-box;
|
|
22039
|
+
-webkit-box-orient: vertical;
|
|
22040
|
+
-webkit-line-clamp: 3;
|
|
22041
|
+
white-space: initial;
|
|
22042
|
+
max-height: calc(1.5em * 3);
|
|
22043
|
+
}
|
|
22044
|
+
.line-clamp-3 > p {
|
|
22045
|
+
margin-bottom: 1.5em;
|
|
22046
|
+
}
|
|
22047
|
+
|
|
22048
|
+
.line-clamp-sm-3 {
|
|
22049
|
+
overflow: hidden;
|
|
22050
|
+
display: -webkit-box;
|
|
22051
|
+
-webkit-box-orient: vertical;
|
|
22052
|
+
-webkit-line-clamp: 3;
|
|
22053
|
+
white-space: initial;
|
|
22054
|
+
max-height: calc(1.25em * 3);
|
|
22055
|
+
}
|
|
22056
|
+
.line-clamp-sm-3 > p {
|
|
22057
|
+
margin-bottom: 1.25em;
|
|
22058
|
+
}
|
|
22059
|
+
|
|
22060
|
+
.line-clamp-4 {
|
|
22061
|
+
overflow: hidden;
|
|
22062
|
+
display: -webkit-box;
|
|
22063
|
+
-webkit-box-orient: vertical;
|
|
22064
|
+
-webkit-line-clamp: 4;
|
|
22065
|
+
white-space: initial;
|
|
22066
|
+
max-height: calc(1.5em * 4);
|
|
22067
|
+
}
|
|
22068
|
+
.line-clamp-4 > p {
|
|
22069
|
+
margin-bottom: 1.5em;
|
|
22070
|
+
}
|
|
22071
|
+
|
|
22072
|
+
.line-clamp-sm-4 {
|
|
22073
|
+
overflow: hidden;
|
|
22074
|
+
display: -webkit-box;
|
|
22075
|
+
-webkit-box-orient: vertical;
|
|
22076
|
+
-webkit-line-clamp: 4;
|
|
22077
|
+
white-space: initial;
|
|
22078
|
+
max-height: calc(1.25em * 4);
|
|
22079
|
+
}
|
|
22080
|
+
.line-clamp-sm-4 > p {
|
|
22081
|
+
margin-bottom: 1.25em;
|
|
22082
|
+
}
|
|
22083
|
+
|
|
22084
|
+
.line-clamp-5 {
|
|
22085
|
+
overflow: hidden;
|
|
22086
|
+
display: -webkit-box;
|
|
22087
|
+
-webkit-box-orient: vertical;
|
|
22088
|
+
-webkit-line-clamp: 5;
|
|
22089
|
+
white-space: initial;
|
|
22090
|
+
max-height: calc(1.5em * 5);
|
|
22091
|
+
}
|
|
22092
|
+
.line-clamp-5 > p {
|
|
22093
|
+
margin-bottom: 1.5em;
|
|
22094
|
+
}
|
|
22095
|
+
|
|
22096
|
+
.line-clamp-sm-5 {
|
|
22097
|
+
overflow: hidden;
|
|
22098
|
+
display: -webkit-box;
|
|
22099
|
+
-webkit-box-orient: vertical;
|
|
22100
|
+
-webkit-line-clamp: 5;
|
|
22101
|
+
white-space: initial;
|
|
22102
|
+
max-height: calc(1.25em * 5);
|
|
22103
|
+
}
|
|
22104
|
+
.line-clamp-sm-5 > p {
|
|
22105
|
+
margin-bottom: 1.25em;
|
|
22106
|
+
}
|
|
22107
|
+
|
|
22108
|
+
.line-clamp-6 {
|
|
22109
|
+
overflow: hidden;
|
|
22110
|
+
display: -webkit-box;
|
|
22111
|
+
-webkit-box-orient: vertical;
|
|
22112
|
+
-webkit-line-clamp: 6;
|
|
22113
|
+
white-space: initial;
|
|
22114
|
+
max-height: calc(1.5em * 6);
|
|
22115
|
+
}
|
|
22116
|
+
.line-clamp-6 > p {
|
|
22117
|
+
margin-bottom: 1.5em;
|
|
22118
|
+
}
|
|
22119
|
+
|
|
22120
|
+
.line-clamp-sm-6 {
|
|
22121
|
+
overflow: hidden;
|
|
22122
|
+
display: -webkit-box;
|
|
22123
|
+
-webkit-box-orient: vertical;
|
|
22124
|
+
-webkit-line-clamp: 6;
|
|
22125
|
+
white-space: initial;
|
|
22126
|
+
max-height: calc(1.25em * 6);
|
|
22127
|
+
}
|
|
22128
|
+
.line-clamp-sm-6 > p {
|
|
22129
|
+
margin-bottom: 1.25em;
|
|
22130
|
+
}
|
|
22131
|
+
|
|
22132
|
+
.clamp-fade-1 {
|
|
22133
|
+
cursor: pointer;
|
|
22134
|
+
}
|
|
22135
|
+
.clamp-fade-1.line-clamp-1 {
|
|
22136
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (1 - 1)), transparent calc(1.5em * 1));
|
|
22137
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (1 - 1)), transparent calc(1.5em * 1));
|
|
22138
|
+
}
|
|
22139
|
+
|
|
22140
|
+
.clamp-fade-sm-1 {
|
|
22141
|
+
cursor: pointer;
|
|
22142
|
+
}
|
|
22143
|
+
.clamp-fade-sm-1.line-clamp-1 {
|
|
22144
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (1 - 1)), transparent calc(1.25em * 1));
|
|
22145
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (1 - 1)), transparent calc(1.25em * 1));
|
|
22146
|
+
}
|
|
22147
|
+
|
|
22148
|
+
.clamp-fade-2 {
|
|
22149
|
+
cursor: pointer;
|
|
22150
|
+
}
|
|
22151
|
+
.clamp-fade-2.line-clamp-2 {
|
|
22152
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (2 - 1)), transparent calc(1.5em * 2));
|
|
22153
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (2 - 1)), transparent calc(1.5em * 2));
|
|
22154
|
+
}
|
|
22155
|
+
|
|
22156
|
+
.clamp-fade-sm-2 {
|
|
22157
|
+
cursor: pointer;
|
|
22158
|
+
}
|
|
22159
|
+
.clamp-fade-sm-2.line-clamp-2 {
|
|
22160
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (2 - 1)), transparent calc(1.25em * 2));
|
|
22161
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (2 - 1)), transparent calc(1.25em * 2));
|
|
22162
|
+
}
|
|
22163
|
+
|
|
22164
|
+
.clamp-fade-3 {
|
|
22165
|
+
cursor: pointer;
|
|
22166
|
+
}
|
|
22167
|
+
.clamp-fade-3.line-clamp-3 {
|
|
22168
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (3 - 1)), transparent calc(1.5em * 3));
|
|
22169
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (3 - 1)), transparent calc(1.5em * 3));
|
|
22170
|
+
}
|
|
22171
|
+
|
|
22172
|
+
.clamp-fade-sm-3 {
|
|
22173
|
+
cursor: pointer;
|
|
22174
|
+
}
|
|
22175
|
+
.clamp-fade-sm-3.line-clamp-3 {
|
|
22176
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (3 - 1)), transparent calc(1.25em * 3));
|
|
22177
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (3 - 1)), transparent calc(1.25em * 3));
|
|
22178
|
+
}
|
|
22179
|
+
|
|
22180
|
+
.clamp-fade-4 {
|
|
22181
|
+
cursor: pointer;
|
|
22182
|
+
}
|
|
22183
|
+
.clamp-fade-4.line-clamp-4 {
|
|
22184
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (4 - 1)), transparent calc(1.5em * 4));
|
|
22185
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (4 - 1)), transparent calc(1.5em * 4));
|
|
22186
|
+
}
|
|
22187
|
+
|
|
22188
|
+
.clamp-fade-sm-4 {
|
|
22189
|
+
cursor: pointer;
|
|
22190
|
+
}
|
|
22191
|
+
.clamp-fade-sm-4.line-clamp-4 {
|
|
22192
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (4 - 1)), transparent calc(1.25em * 4));
|
|
22193
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (4 - 1)), transparent calc(1.25em * 4));
|
|
22194
|
+
}
|
|
22195
|
+
|
|
22196
|
+
.clamp-fade-5 {
|
|
22197
|
+
cursor: pointer;
|
|
22198
|
+
}
|
|
22199
|
+
.clamp-fade-5.line-clamp-5 {
|
|
22200
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (5 - 1)), transparent calc(1.5em * 5));
|
|
22201
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (5 - 1)), transparent calc(1.5em * 5));
|
|
22202
|
+
}
|
|
22203
|
+
|
|
22204
|
+
.clamp-fade-sm-5 {
|
|
22205
|
+
cursor: pointer;
|
|
22206
|
+
}
|
|
22207
|
+
.clamp-fade-sm-5.line-clamp-5 {
|
|
22208
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (5 - 1)), transparent calc(1.25em * 5));
|
|
22209
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (5 - 1)), transparent calc(1.25em * 5));
|
|
22210
|
+
}
|
|
22211
|
+
|
|
22212
|
+
.clamp-fade-6 {
|
|
22213
|
+
cursor: pointer;
|
|
22214
|
+
}
|
|
22215
|
+
.clamp-fade-6.line-clamp-6 {
|
|
22216
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (6 - 1)), transparent calc(1.5em * 6));
|
|
22217
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.5em * (6 - 1)), transparent calc(1.5em * 6));
|
|
22218
|
+
}
|
|
22219
|
+
|
|
22220
|
+
.clamp-fade-sm-6 {
|
|
22221
|
+
cursor: pointer;
|
|
22222
|
+
}
|
|
22223
|
+
.clamp-fade-sm-6.line-clamp-6 {
|
|
22224
|
+
mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (6 - 1)), transparent calc(1.25em * 6));
|
|
22225
|
+
-webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(1.25em * (6 - 1)), transparent calc(1.25em * 6));
|
|
22226
|
+
}
|
|
22227
|
+
|
|
22228
|
+
.border-gray-100 {
|
|
22229
|
+
border-color: #f8f9fa !important;
|
|
22230
|
+
}
|
|
22231
|
+
|
|
22232
|
+
.border-gray-200 {
|
|
22233
|
+
border-color: #e9ecef !important;
|
|
22234
|
+
}
|
|
22235
|
+
|
|
22236
|
+
.border-gray-300 {
|
|
22237
|
+
border-color: #dee2e6 !important;
|
|
22238
|
+
}
|
|
22239
|
+
|
|
22240
|
+
.border-gray-400 {
|
|
22241
|
+
border-color: #ced4da !important;
|
|
22242
|
+
}
|
|
22243
|
+
|
|
22244
|
+
.border-gray-500 {
|
|
22245
|
+
border-color: #adb5bd !important;
|
|
22246
|
+
}
|
|
22247
|
+
|
|
22248
|
+
.border-gray-600 {
|
|
22249
|
+
border-color: #6c757d !important;
|
|
22250
|
+
}
|
|
22251
|
+
|
|
22252
|
+
.border-gray-700 {
|
|
22253
|
+
border-color: #495057 !important;
|
|
22254
|
+
}
|
|
22255
|
+
|
|
22256
|
+
.border-gray-800 {
|
|
22257
|
+
border-color: #343a40 !important;
|
|
22258
|
+
}
|
|
22259
|
+
|
|
22260
|
+
.border-gray-900 {
|
|
22261
|
+
border-color: #212529 !important;
|
|
22262
|
+
}
|
|
22263
|
+
|
|
22264
|
+
.flex-1 {
|
|
22265
|
+
flex: 1 1 0% !important;
|
|
22266
|
+
}
|
|
22267
|
+
|
|
22268
|
+
.flex-0 {
|
|
22269
|
+
flex: 0 !important;
|
|
22270
|
+
}
|
|
22271
|
+
|
|
22272
|
+
.pointer {
|
|
22273
|
+
cursor: pointer;
|
|
22274
|
+
*cursor: hand;
|
|
22275
|
+
}
|
|
22276
|
+
|
|
22277
|
+
.text-md {
|
|
22278
|
+
font-size: 1.125rem !important;
|
|
22279
|
+
}
|
|
22280
|
+
|
|
22281
|
+
.text-sm {
|
|
22282
|
+
font-size: 0.875rem !important;
|
|
22283
|
+
}
|
|
22284
|
+
|
|
22285
|
+
.text-xs {
|
|
22286
|
+
font-size: 0.75rem !important;
|
|
22287
|
+
}
|
|
22288
|
+
|
|
22289
|
+
.text-tabular {
|
|
22290
|
+
font-variant-numeric: tabular-nums !important;
|
|
22291
|
+
}
|
|
22292
|
+
|
|
22293
|
+
.text-wrap-pretty {
|
|
22294
|
+
text-wrap: pretty !important;
|
|
22295
|
+
}
|
|
22296
|
+
|
|
22297
|
+
.overscroll-behavior-contain {
|
|
22298
|
+
overscroll-behavior: contain;
|
|
22299
|
+
}
|
|
22300
|
+
|
|
22301
|
+
[component=category-selector] #category-dropdown-check:checked + .dropdown-menu, .category-dropdown-container #category-dropdown-check:checked + .dropdown-menu {
|
|
22302
|
+
display: block;
|
|
22303
|
+
}
|
|
22304
|
+
|
|
22305
|
+
html[data-dir=ltr] .dropdown-left .dropdown-menu {
|
|
22306
|
+
--bs-position: start;
|
|
22307
|
+
}
|
|
22308
|
+
html[data-dir=ltr] .dropdown-right .dropdown-menu {
|
|
22309
|
+
--bs-position: end;
|
|
22310
|
+
}
|
|
22311
|
+
|
|
22312
|
+
html[data-dir=rtl] .dropdown-left .dropdown-menu {
|
|
22313
|
+
--bs-position: end;
|
|
22314
|
+
}
|
|
22315
|
+
html[data-dir=rtl] .dropdown-right .dropdown-menu {
|
|
22316
|
+
--bs-position: start;
|
|
22317
|
+
}
|
|
22318
|
+
|
|
22319
|
+
.category-dropdown-menu {
|
|
22320
|
+
max-height: 500px;
|
|
22321
|
+
overflow-y: auto;
|
|
22322
|
+
overflow-x: hidden;
|
|
22323
|
+
}
|
|
22324
|
+
|
|
22325
|
+
.bootstrap-tagsinput {
|
|
22326
|
+
box-shadow: none;
|
|
22327
|
+
}
|
|
22328
|
+
.bootstrap-tagsinput input::placeholder {
|
|
22329
|
+
color: var(--bs-secondary-color);
|
|
22330
|
+
}
|
|
22331
|
+
.bootstrap-tagsinput input {
|
|
22332
|
+
color: var(--bs-body-color);
|
|
22333
|
+
}
|
|
22334
|
+
.bootstrap-tagsinput .tag {
|
|
22335
|
+
margin-bottom: 2px;
|
|
22336
|
+
}
|
|
22337
|
+
|
|
22338
|
+
.avatar {
|
|
22339
|
+
/* Contains the user icon class as a mixin, so there's no need to include that in the template */
|
|
22340
|
+
display: inline-flex;
|
|
22341
|
+
justify-content: center;
|
|
22342
|
+
align-items: center;
|
|
22343
|
+
color: #fff;
|
|
22344
|
+
font-weight: normal;
|
|
22345
|
+
overflow: hidden; /* stops alt text from overflowing past boundaries if image does not load */
|
|
22346
|
+
white-space: nowrap;
|
|
22347
|
+
border-radius: inherit;
|
|
22348
|
+
width: var(--avatar-size);
|
|
22349
|
+
height: var(--avatar-size);
|
|
22350
|
+
line-height: var(--avatar-size);
|
|
22351
|
+
font-size: calc(var(--avatar-size) * 0.6);
|
|
22352
|
+
}
|
|
22353
|
+
.avatar.avatar-rounded {
|
|
22354
|
+
border-radius: 50%;
|
|
22355
|
+
}
|
|
22356
|
+
.avatar + .avatar {
|
|
22357
|
+
display: none;
|
|
22358
|
+
}
|
|
22359
|
+
|
|
22360
|
+
blockquote {
|
|
22361
|
+
background-color: rgba(var(--bs-body-color-rgb), 0.03);
|
|
22362
|
+
color: var(--bs-body-color);
|
|
22363
|
+
font-style: normal;
|
|
22364
|
+
border-radius: 0.25rem;
|
|
22365
|
+
padding: 1rem;
|
|
22366
|
+
}
|
|
22367
|
+
blockquote p:last-child {
|
|
22368
|
+
margin-bottom: 0;
|
|
22369
|
+
}
|
|
22370
|
+
|
|
22371
|
+
.necro-post {
|
|
22372
|
+
text-align: center;
|
|
22373
|
+
text-transform: uppercase;
|
|
22374
|
+
}
|
|
22375
|
+
|
|
22376
|
+
.timeline-event {
|
|
22377
|
+
display: flex;
|
|
22378
|
+
align-items: center;
|
|
22379
|
+
justify-content: center;
|
|
22380
|
+
}
|
|
22381
|
+
.timeline-event .timeline-badge {
|
|
22382
|
+
padding: 1rem;
|
|
22383
|
+
}
|
|
22384
|
+
|
|
22385
|
+
.imagedrop {
|
|
22386
|
+
position: absolute;
|
|
22387
|
+
text-align: center;
|
|
22388
|
+
font-size: 24px;
|
|
22389
|
+
color: #6c757d;
|
|
22390
|
+
width: 100%;
|
|
22391
|
+
display: none;
|
|
22392
|
+
}
|
|
22393
|
+
|
|
22394
|
+
.hover-parent .hover-d-block, .hover-parent .hover-d-flex {
|
|
22395
|
+
display: none !important;
|
|
22396
|
+
}
|
|
22397
|
+
.hover-parent .hover-visible {
|
|
22398
|
+
visibility: hidden;
|
|
22399
|
+
}
|
|
22400
|
+
.hover-parent .hover-opacity-75 {
|
|
22401
|
+
opacity: 0;
|
|
22402
|
+
}
|
|
22403
|
+
.hover-parent .hover-opacity-75:focus {
|
|
22404
|
+
opacity: 0.75;
|
|
22405
|
+
}
|
|
22406
|
+
.hover-parent .hover-opacity-100 {
|
|
22407
|
+
opacity: 0;
|
|
22408
|
+
}
|
|
22409
|
+
.hover-parent .hover-opacity-100:focus {
|
|
22410
|
+
opacity: 1;
|
|
22411
|
+
}
|
|
22412
|
+
.hover-parent:hover .hover-d-block {
|
|
22413
|
+
display: block !important;
|
|
22414
|
+
}
|
|
22415
|
+
.hover-parent:hover .hover-d-flex {
|
|
22416
|
+
display: flex !important;
|
|
22417
|
+
}
|
|
22418
|
+
.hover-parent:hover .hover-visible {
|
|
22419
|
+
visibility: visible;
|
|
22420
|
+
}
|
|
22421
|
+
.hover-parent:hover .hover-opacity-100 {
|
|
22422
|
+
opacity: 1;
|
|
22423
|
+
}
|
|
22424
|
+
.hover-parent:hover .hover-opacity-75 {
|
|
22425
|
+
opacity: 0.75;
|
|
22426
|
+
}
|
|
22427
|
+
|
|
22428
|
+
.border-muted {
|
|
22429
|
+
border-color: var(--bs-secondary-color) !important;
|
|
22430
|
+
}
|
|
22431
|
+
|
|
22432
|
+
.border-body {
|
|
22433
|
+
border-color: var(--bs-body-bg) !important;
|
|
22434
|
+
}
|
|
22435
|
+
|
|
22436
|
+
.hidden-empty:empty {
|
|
22437
|
+
display: none !important;
|
|
22438
|
+
}
|
|
22439
|
+
|
|
22440
|
+
.text-contain {
|
|
22441
|
+
min-width: 0;
|
|
22442
|
+
word-break: break-word;
|
|
22443
|
+
overflow-wrap: anywhere;
|
|
22444
|
+
}
|
|
22445
|
+
.text-contain > * {
|
|
22446
|
+
max-width: 100%;
|
|
22447
|
+
white-space: pre-wrap;
|
|
22448
|
+
word-break: break-word;
|
|
22449
|
+
overflow-wrap: anywhere;
|
|
22450
|
+
}
|
|
22451
|
+
|
|
22452
|
+
.hidden-blockquote blockquote {
|
|
22453
|
+
display: none;
|
|
22454
|
+
}
|
|
22455
|
+
|
|
22456
|
+
.hidden-pre pre {
|
|
22457
|
+
display: none;
|
|
22458
|
+
}
|
|
22459
|
+
|
|
22460
|
+
.hidden-first-child-br > br:first-child {
|
|
22461
|
+
display: none;
|
|
22462
|
+
}
|
|
22463
|
+
|
|
22464
|
+
.hidden-last-child-br > br:last-child {
|
|
22465
|
+
display: none;
|
|
22466
|
+
}
|
|
22467
|
+
|
|
22468
|
+
.hidden-first-child-hr > hr:first-child {
|
|
22469
|
+
display: none;
|
|
22470
|
+
}
|
|
22471
|
+
|
|
22472
|
+
.hidden-last-child-hr > hr:last-child {
|
|
22473
|
+
display: none;
|
|
22474
|
+
}
|
|
22475
|
+
|
|
22476
|
+
.trim-last-divider > *:last-child hr {
|
|
22477
|
+
display: none;
|
|
22478
|
+
}
|
|
22479
|
+
|
|
22480
|
+
.hidden, .hide {
|
|
22481
|
+
display: none !important;
|
|
22482
|
+
}
|
|
22483
|
+
|
|
22484
|
+
.pull-left {
|
|
22485
|
+
float: left !important;
|
|
22486
|
+
}
|
|
22487
|
+
|
|
22488
|
+
.pull-right {
|
|
22489
|
+
float: right !important;
|
|
22490
|
+
}
|
|
22491
|
+
|
|
22492
|
+
img.emoji {
|
|
22493
|
+
height: 1.09375rem;
|
|
22494
|
+
}
|
|
22495
|
+
|
|
22496
|
+
.highlight-pulse {
|
|
22497
|
+
animation: pulse-grow 1.5s ease-in-out 3;
|
|
22498
|
+
transform-origin: center;
|
|
22499
|
+
z-index: 10;
|
|
22500
|
+
}
|
|
22501
|
+
|
|
22502
|
+
@keyframes pulse-grow {
|
|
22503
|
+
0%, 100% {
|
|
22504
|
+
transform: scale(1);
|
|
22505
|
+
background-color: transparent;
|
|
22506
|
+
}
|
|
22507
|
+
50% {
|
|
22508
|
+
transform: scale(1.005);
|
|
22509
|
+
background-color: color-mix(in srgb, var(--bs-body-bg), var(--bs-body-color) 10%);
|
|
22510
|
+
}
|
|
22511
|
+
}
|
|
22512
|
+
@media (min-width: 768px) {
|
|
22513
|
+
.flex-md-shrink-50 {
|
|
22514
|
+
flex: 1 1 50% !important;
|
|
22515
|
+
min-width: 50% !important;
|
|
22516
|
+
}
|
|
22517
|
+
}
|
|
22518
|
+
@media (max-width: 767.98px) {
|
|
22519
|
+
.flex-md-shrink-50 {
|
|
22520
|
+
flex: 1 1 100%;
|
|
22521
|
+
min-width: 0;
|
|
22522
|
+
}
|
|
22523
|
+
}
|
|
22524
|
+
/*
|
|
22525
|
+
Flags page CSS
|
|
22526
|
+
- Originally in ACP
|
|
22527
|
+
- Now available in front-end for global mods as well
|
|
22528
|
+
*/
|
|
22529
|
+
.page-flags [component="flags/filters"] [component="category/dropdown"] [data-cid=all] {
|
|
22530
|
+
display: none;
|
|
22531
|
+
}
|
|
22532
|
+
|
|
22533
|
+
.stacked-avatars {
|
|
22534
|
+
width: 32px;
|
|
22535
|
+
height: 32px;
|
|
22536
|
+
}
|
|
22537
|
+
.stacked-avatars span:first-child {
|
|
22538
|
+
top: 0;
|
|
22539
|
+
left: 8px;
|
|
22540
|
+
}
|
|
22541
|
+
.stacked-avatars span:last-child {
|
|
22542
|
+
left: 0;
|
|
22543
|
+
top: 8px;
|
|
22544
|
+
}
|
|
22545
|
+
|
|
22546
|
+
body.page-user-chats #content {
|
|
22547
|
+
max-width: 100%;
|
|
22548
|
+
margin-bottom: 0 !important;
|
|
22549
|
+
}
|
|
22550
|
+
body.page-user-chats {
|
|
22551
|
+
overflow: hidden;
|
|
22552
|
+
}
|
|
22553
|
+
body.page-user-chats [data-widget-area=footer] {
|
|
22554
|
+
display: none;
|
|
22555
|
+
}
|
|
22556
|
+
body.page-user-chats {
|
|
22557
|
+
height: 100%;
|
|
22558
|
+
}
|
|
22559
|
+
|
|
22560
|
+
[component="chat/recent"] .active .chat-room-btn {
|
|
22561
|
+
background-color: var(--btn-ghost-hover-color);
|
|
22562
|
+
}
|
|
22563
|
+
|
|
22564
|
+
[component="chat/nav-wrapper"] {
|
|
22565
|
+
width: 300px;
|
|
22566
|
+
}
|
|
22567
|
+
[component="chat/nav-wrapper"] [component="chat/public/room"].unread {
|
|
22568
|
+
font-weight: 700;
|
|
22569
|
+
}
|
|
22570
|
+
|
|
22571
|
+
[component="chat/user/list"] [data-uid] [component="chat/user/list/username"] {
|
|
22572
|
+
color: var(--bs-secondary-color);
|
|
22573
|
+
}
|
|
22574
|
+
[component="chat/user/list"] [data-uid].online [component="chat/user/list/username"] {
|
|
22575
|
+
color: initial;
|
|
22576
|
+
font-weight: 600;
|
|
22577
|
+
}
|
|
22578
|
+
|
|
22579
|
+
[component="chat/message/parent"] [component="chat/message/parent/content"] > p:last-child {
|
|
22580
|
+
margin-bottom: 0;
|
|
22581
|
+
}
|
|
22582
|
+
|
|
22583
|
+
.expanded-chat .chat-content .message-body ul > li {
|
|
22584
|
+
list-style-type: disc;
|
|
22585
|
+
}
|
|
22586
|
+
.expanded-chat .chat-content .message-body ul > li ul > li {
|
|
22587
|
+
list-style-type: circle;
|
|
22588
|
+
}
|
|
22589
|
+
.expanded-chat .chat-content .message-body ul > li ul > li ul > li {
|
|
22590
|
+
list-style-type: square;
|
|
22591
|
+
}
|
|
22592
|
+
.expanded-chat .chat-content .message-body ol,
|
|
22593
|
+
.expanded-chat .chat-content .message-body ul {
|
|
22594
|
+
padding-left: 2rem;
|
|
22595
|
+
}
|
|
22596
|
+
.expanded-chat .chat-content .message-body ol,
|
|
22597
|
+
.expanded-chat .chat-content .message-body ul,
|
|
22598
|
+
.expanded-chat .chat-content .message-body dl {
|
|
22599
|
+
margin-top: 0;
|
|
22600
|
+
margin-bottom: 1rem;
|
|
22601
|
+
}
|
|
22602
|
+
.expanded-chat .chat-content .message-body ol ol,
|
|
22603
|
+
.expanded-chat .chat-content .message-body ul ul,
|
|
22604
|
+
.expanded-chat .chat-content .message-body ol ul,
|
|
22605
|
+
.expanded-chat .chat-content .message-body ul ol {
|
|
22606
|
+
margin-bottom: 0;
|
|
22607
|
+
}
|
|
22608
|
+
.expanded-chat .chat-content .chat-message .message-body-wrapper .controls {
|
|
22609
|
+
opacity: 0;
|
|
22610
|
+
transition: opacity 0.15s linear;
|
|
22611
|
+
}
|
|
22612
|
+
.expanded-chat .chat-content .chat-message .message-body-wrapper .controls:has([aria-expanded=true]) {
|
|
22613
|
+
opacity: 1;
|
|
22614
|
+
}
|
|
22615
|
+
.expanded-chat .chat-content .chat-message .message-body-wrapper .controls [data-action=restore], .expanded-chat .chat-content .chat-message .message-body-wrapper .controls [data-action=unpin] {
|
|
22616
|
+
display: none;
|
|
22617
|
+
}
|
|
22618
|
+
.expanded-chat .chat-content .chat-message .message-body-wrapper:hover .controls {
|
|
22619
|
+
opacity: 1;
|
|
22620
|
+
}
|
|
22621
|
+
.expanded-chat .chat-content .chat-message.deleted .message-body {
|
|
22622
|
+
opacity: 0.3;
|
|
22623
|
+
}
|
|
22624
|
+
.expanded-chat .chat-content .chat-message.deleted .message-body-wrapper .controls [data-action] {
|
|
22625
|
+
display: none;
|
|
22626
|
+
}
|
|
22627
|
+
.expanded-chat .chat-content .chat-message.deleted .message-body-wrapper .controls [data-action=restore] {
|
|
22628
|
+
display: block;
|
|
22629
|
+
}
|
|
22630
|
+
.expanded-chat .chat-content .chat-message.pinned .message-body-wrapper .controls [data-action=pin] {
|
|
22631
|
+
display: none;
|
|
22632
|
+
}
|
|
22633
|
+
.expanded-chat .chat-content .chat-message.pinned .message-body-wrapper .controls [data-action=unpin] {
|
|
22634
|
+
display: block;
|
|
22635
|
+
}
|
|
22636
|
+
|
|
22637
|
+
/* Mobile handling of chat page */
|
|
22638
|
+
@media (max-width: 991.98px) {
|
|
22639
|
+
.page-user-chats.chat-loaded {
|
|
22640
|
+
padding-bottom: 4.75rem;
|
|
22641
|
+
}
|
|
22642
|
+
}
|
|
22643
|
+
@media (max-width: 767.98px) {
|
|
22644
|
+
.page-user-chats.chat-loaded {
|
|
22645
|
+
padding-bottom: initial;
|
|
22646
|
+
}
|
|
22647
|
+
[component="chat/nav-wrapper"] {
|
|
22648
|
+
width: 100%;
|
|
22649
|
+
}
|
|
22650
|
+
.page-user-chats.chat-loaded .bottombar {
|
|
22651
|
+
display: none !important;
|
|
22652
|
+
}
|
|
22653
|
+
[component="chat/nav-wrapper"][data-loaded="1"] {
|
|
22654
|
+
display: none !important;
|
|
22655
|
+
}
|
|
22656
|
+
[component="chat/nav-wrapper"][data-loaded="0"] + [component="chat/main-wrapper"] {
|
|
22657
|
+
display: none !important;
|
|
22658
|
+
}
|
|
22659
|
+
}
|
|
22660
|
+
.chat-modal {
|
|
22661
|
+
left: auto;
|
|
22662
|
+
top: auto;
|
|
22663
|
+
bottom: 0px;
|
|
22664
|
+
right: 2rem;
|
|
22665
|
+
width: auto !important;
|
|
22666
|
+
height: auto !important;
|
|
22667
|
+
}
|
|
22668
|
+
.chat-modal [component="chat/user/list/btn"], .chat-modal [component="chat/pinned/messages/btn"] {
|
|
22669
|
+
display: none !important;
|
|
22670
|
+
}
|
|
22671
|
+
|
|
22672
|
+
/*
|
|
22673
|
+
This stylesheet is applied to all themes and all pages.
|
|
22674
|
+
They can be overridden by themes, though their presence (or initial settings) may be depended upon by
|
|
22675
|
+
client-side logic in core.
|
|
22676
|
+
|
|
22677
|
+
==========
|
|
22678
|
+
*/
|
|
22679
|
+
/*rtl:begin:ignore*/
|
|
22680
|
+
html[data-dir=rtl] .text-break {
|
|
22681
|
+
word-wrap: break-word !important;
|
|
22682
|
+
word-break: break-word !important;
|
|
22683
|
+
}
|
|
22684
|
+
html[data-dir=rtl] [component="post/content"] code {
|
|
22685
|
+
direction: ltr;
|
|
22686
|
+
text-align: left;
|
|
22687
|
+
}
|
|
22688
|
+
|
|
22689
|
+
/*rtl:end:ignore*/
|
|
22690
|
+
[component="post/content"] h1, [component="post/content"] .h1,
|
|
22691
|
+
[component="post/parent/content"] h1,
|
|
22692
|
+
[component="post/parent/content"] .h1,
|
|
22693
|
+
[component="chat/message/body"] h1,
|
|
22694
|
+
[component="chat/message/body"] .h1,
|
|
22695
|
+
[component=composer] .preview h1,
|
|
22696
|
+
[component=composer] .preview .h1 {
|
|
22697
|
+
font-size: calc(1.15rem + 1vw);
|
|
22698
|
+
}
|
|
22699
|
+
[component="post/content"] h2, [component="post/content"] .h2,
|
|
22700
|
+
[component="post/parent/content"] h2,
|
|
22701
|
+
[component="post/parent/content"] .h2,
|
|
22702
|
+
[component="chat/message/body"] h2,
|
|
22703
|
+
[component="chat/message/body"] .h2,
|
|
22704
|
+
[component=composer] .preview h2,
|
|
22705
|
+
[component=composer] .preview .h2 {
|
|
22706
|
+
font-size: calc(1.1rem + 0.8vw);
|
|
22707
|
+
}
|
|
22708
|
+
[component="post/content"] h3, [component="post/content"] .h3,
|
|
22709
|
+
[component="post/parent/content"] h3,
|
|
22710
|
+
[component="post/parent/content"] .h3,
|
|
22711
|
+
[component="chat/message/body"] h3,
|
|
22712
|
+
[component="chat/message/body"] .h3,
|
|
22713
|
+
[component=composer] .preview h3,
|
|
22714
|
+
[component=composer] .preview .h3 {
|
|
22715
|
+
font-size: calc(1.075rem + 0.6vw);
|
|
22716
|
+
}
|
|
22717
|
+
[component="post/content"] h4, [component="post/content"] .h4,
|
|
22718
|
+
[component="post/parent/content"] h4,
|
|
22719
|
+
[component="post/parent/content"] .h4,
|
|
22720
|
+
[component="chat/message/body"] h4,
|
|
22721
|
+
[component="chat/message/body"] .h4,
|
|
22722
|
+
[component=composer] .preview h4,
|
|
22723
|
+
[component=composer] .preview .h4 {
|
|
22724
|
+
font-size: calc(1.05rem + 0.3vw);
|
|
22725
|
+
}
|
|
22726
|
+
[component="post/content"] h5, [component="post/content"] .h5,
|
|
22727
|
+
[component="post/parent/content"] h5,
|
|
22728
|
+
[component="post/parent/content"] .h5,
|
|
22729
|
+
[component="chat/message/body"] h5,
|
|
22730
|
+
[component="chat/message/body"] .h5,
|
|
22731
|
+
[component=composer] .preview h5,
|
|
22732
|
+
[component=composer] .preview .h5 {
|
|
22733
|
+
font-size: 1.125rem;
|
|
22734
|
+
}
|
|
22735
|
+
[component="post/content"] h6, [component="post/content"] .h6,
|
|
22736
|
+
[component="post/parent/content"] h6,
|
|
22737
|
+
[component="post/parent/content"] .h6,
|
|
22738
|
+
[component="chat/message/body"] h6,
|
|
22739
|
+
[component="chat/message/body"] .h6,
|
|
22740
|
+
[component=composer] .preview h6,
|
|
22741
|
+
[component=composer] .preview .h6 {
|
|
22742
|
+
font-size: 1rem;
|
|
22743
|
+
}
|
|
22744
|
+
@media (min-width: 1200px) {
|
|
22745
|
+
[component="post/content"] h1, [component="post/content"] .h1,
|
|
22746
|
+
[component="post/parent/content"] h1,
|
|
22747
|
+
[component="post/parent/content"] .h1,
|
|
22748
|
+
[component="chat/message/body"] h1,
|
|
22749
|
+
[component="chat/message/body"] .h1,
|
|
22750
|
+
[component=composer] .preview h1,
|
|
22751
|
+
[component=composer] .preview .h1 {
|
|
22752
|
+
font-size: 1.75rem;
|
|
22753
|
+
}
|
|
22754
|
+
[component="post/content"] h2, [component="post/content"] .h2,
|
|
22755
|
+
[component="post/parent/content"] h2,
|
|
22756
|
+
[component="post/parent/content"] .h2,
|
|
22757
|
+
[component="chat/message/body"] h2,
|
|
22758
|
+
[component="chat/message/body"] .h2,
|
|
22759
|
+
[component=composer] .preview h2,
|
|
22760
|
+
[component=composer] .preview .h2 {
|
|
22761
|
+
font-size: 1.5rem;
|
|
22762
|
+
}
|
|
22763
|
+
[component="post/content"] h3, [component="post/content"] .h3,
|
|
22764
|
+
[component="post/parent/content"] h3,
|
|
22765
|
+
[component="post/parent/content"] .h3,
|
|
22766
|
+
[component="chat/message/body"] h3,
|
|
22767
|
+
[component="chat/message/body"] .h3,
|
|
22768
|
+
[component=composer] .preview h3,
|
|
22769
|
+
[component=composer] .preview .h3 {
|
|
22770
|
+
font-size: 1.375rem;
|
|
22771
|
+
}
|
|
22772
|
+
[component="post/content"] h4, [component="post/content"] .h4,
|
|
22773
|
+
[component="post/parent/content"] h4,
|
|
22774
|
+
[component="post/parent/content"] .h4,
|
|
22775
|
+
[component="chat/message/body"] h4,
|
|
22776
|
+
[component="chat/message/body"] .h4,
|
|
22777
|
+
[component=composer] .preview h4,
|
|
22778
|
+
[component=composer] .preview .h4 {
|
|
22779
|
+
font-size: 1.25rem;
|
|
22780
|
+
}
|
|
22781
|
+
[component="post/content"] h5, [component="post/content"] .h5,
|
|
22782
|
+
[component="post/parent/content"] h5,
|
|
22783
|
+
[component="post/parent/content"] .h5,
|
|
22784
|
+
[component="chat/message/body"] h5,
|
|
22785
|
+
[component="chat/message/body"] .h5,
|
|
22786
|
+
[component=composer] .preview h5,
|
|
22787
|
+
[component=composer] .preview .h5 {
|
|
22788
|
+
font-size: 1.125rem;
|
|
22789
|
+
}
|
|
22790
|
+
[component="post/content"] h6, [component="post/content"] .h6,
|
|
22791
|
+
[component="post/parent/content"] h6,
|
|
22792
|
+
[component="post/parent/content"] .h6,
|
|
22793
|
+
[component="chat/message/body"] h6,
|
|
22794
|
+
[component="chat/message/body"] .h6,
|
|
22795
|
+
[component=composer] .preview h6,
|
|
22796
|
+
[component=composer] .preview .h6 {
|
|
22797
|
+
font-size: 1rem;
|
|
22798
|
+
}
|
|
22799
|
+
}
|
|
22800
|
+
|
|
22801
|
+
.btn-link:hover, .btn-link.active {
|
|
22802
|
+
background-color: var(--btn-ghost-hover-color);
|
|
22803
|
+
text-decoration: none;
|
|
22804
|
+
}
|
|
22805
|
+
|
|
22806
|
+
.tool-modal {
|
|
22807
|
+
position: fixed;
|
|
22808
|
+
bottom: 10%;
|
|
22809
|
+
right: 2rem;
|
|
22810
|
+
z-index: 1055;
|
|
22811
|
+
}
|
|
22812
|
+
.tool-modal [component=category-selector-selected] span {
|
|
22813
|
+
display: inline-flex !important;
|
|
22814
|
+
}
|
|
22815
|
+
.tool-modal .bootstrap-tagsinput input {
|
|
22816
|
+
width: 100%;
|
|
22817
|
+
}
|
|
22818
|
+
.tool-modal .bootstrap-tagsinput .ui-autocomplete {
|
|
22819
|
+
max-height: 350px;
|
|
22820
|
+
overflow-x: hidden;
|
|
22821
|
+
overflow-y: auto;
|
|
22822
|
+
}
|
|
22823
|
+
|
|
22824
|
+
@media (max-width: 767.98px) {
|
|
22825
|
+
.tool-modal {
|
|
22826
|
+
margin: 0 1rem;
|
|
22827
|
+
right: 0;
|
|
22828
|
+
}
|
|
22829
|
+
}
|
|
22830
|
+
@media (min-width: 768px) {
|
|
22831
|
+
.tool-modal {
|
|
22832
|
+
max-width: 500px;
|
|
22833
|
+
}
|
|
22834
|
+
}
|
|
22835
|
+
#crop-picture-modal .cropper-container.cropper-bg {
|
|
22836
|
+
max-width: 100%;
|
|
22837
|
+
}
|
|
22838
|
+
|
|
22839
|
+
:root {
|
|
22840
|
+
--btn-ghost-hover-color: rgb(232.8, 233.2, 233.6);
|
|
22841
|
+
--btn-ghost-active-color: rgb(245.7839449541, 245.95, 246.1160550459);
|
|
22842
|
+
}
|
|
22843
|
+
|
|
22844
|
+
[data-bs-theme=dark] {
|
|
22845
|
+
--btn-ghost-hover-color: rgb(55.2, 58.8, 62.4);
|
|
22846
|
+
--btn-ghost-active-color: rgb(67.1693877551, 71.55, 75.9306122449);
|
|
22847
|
+
}
|
|
22848
|
+
|
|
22849
|
+
.btn-ghost {
|
|
22850
|
+
--bs-btn-color: inherit!important;
|
|
22851
|
+
--bs-btn-bg: transparent;
|
|
22852
|
+
--bs-btn-border-color: transparent;
|
|
22853
|
+
--bs-btn-box-shadow: none;
|
|
22854
|
+
--bs-btn-hover-color: inherit;
|
|
22855
|
+
--bs-btn-hover-bg: rgb(232.8, 233.2, 233.6);
|
|
22856
|
+
--bs-btn-hover-border-color: rgb(232.8, 233.2, 233.6);
|
|
22857
|
+
--bs-btn-active-bg: rgb(232.8, 233.2, 233.6);
|
|
22858
|
+
--bs-btn-active-border-color: transparent;
|
|
22859
|
+
}
|
|
22860
|
+
|
|
22861
|
+
.skin-quartz p > code {
|
|
22862
|
+
color: #ffffff;
|
|
22863
|
+
font-weight: 600;
|
|
22864
|
+
font-size: 1rem;
|
|
22865
|
+
text-shadow: 1px 1px black;
|
|
22866
|
+
}
|
|
22867
|
+
.skin-quartz .dropdown-header {
|
|
22868
|
+
color: white;
|
|
22869
|
+
}
|
|
22870
|
+
.skin-quartz .card:has(.dropdown-menu.show) {
|
|
22871
|
+
backdrop-filter: none;
|
|
22872
|
+
}
|
|
22873
|
+
.skin-quartz .card {
|
|
22874
|
+
box-shadow: inset 1px 1px rgba(255, 255, 255, 0.2), inset -1px -1px rgba(255, 255, 255, 0.1), 1px 3px 8px -1px rgba(0, 0, 0, 0.15);
|
|
22875
|
+
}
|
|
22876
|
+
.skin-quartz .tag-list .tag:before {
|
|
22877
|
+
background: linear-gradient(90deg, rgb(51.3, 182.7, 225.9), rgb(93.6, 98.1, 175.5), rgb(220.4, 47.5, 124.45));
|
|
22878
|
+
background-attachment: fixed;
|
|
22879
|
+
transform: initial;
|
|
22880
|
+
top: 6px;
|
|
22881
|
+
}
|
|
22882
|
+
.skin-quartz .composer .resizer {
|
|
22883
|
+
background: transparent;
|
|
22884
|
+
}
|
|
22885
|
+
|
|
22886
|
+
.skin-brite .text-secondary {
|
|
22887
|
+
color: var(--bs-secondary-color) !important;
|
|
22888
|
+
}
|
|
22889
|
+
.skin-brite .btn-link {
|
|
22890
|
+
background: #fff;
|
|
22891
|
+
}
|
|
22892
|
+
|
|
22893
|
+
.skin-minty .btn {
|
|
22894
|
+
color: initial !important;
|
|
22895
|
+
}
|
|
22896
|
+
|
|
22897
|
+
.skin-litera .badge {
|
|
22898
|
+
padding: 0.25rem 0.5rem;
|
|
22899
|
+
}
|
|
22900
|
+
|
|
22901
|
+
:root .skin-slate {
|
|
22902
|
+
--bs-primary-rgb: rgb(79.9407024793, 147.5561983471, 205.9092975207);
|
|
22903
|
+
}
|
|
22904
|
+
:root .skin-darkly, :root .skin-slate, :root .skin-cyborg {
|
|
22905
|
+
--bs-border-color: #929292;
|
|
22906
|
+
}
|
|
22907
|
+
:root .skin-zephyr {
|
|
22908
|
+
--bs-secondary-rgb: var(--bs-secondary-color);
|
|
22909
|
+
}
|
|
22910
|
+
:root .skin-quartz .table {
|
|
22911
|
+
--bs-table-bg: transparent!important;
|
|
22912
|
+
}
|
|
22913
|
+
|
|
22914
|
+
.picture-switcher [data-bg-color] {
|
|
22915
|
+
position: relative;
|
|
22916
|
+
border-radius: 50%;
|
|
22917
|
+
}
|
|
22918
|
+
.picture-switcher [data-bg-color].selected::after {
|
|
22919
|
+
content: "";
|
|
22920
|
+
position: absolute;
|
|
22921
|
+
top: -2px;
|
|
22922
|
+
left: -2px;
|
|
22923
|
+
right: -2px;
|
|
22924
|
+
bottom: -2px;
|
|
22925
|
+
border-radius: 50%;
|
|
22926
|
+
border: 2px solid rgb(51.4340909091, 122.2772727273, 183.4159090909);
|
|
22927
|
+
pointer-events: none;
|
|
22928
|
+
z-index: 1;
|
|
22929
|
+
}
|
|
22930
|
+
|
|
22931
|
+
@media (max-width: 767.98px) {
|
|
22932
|
+
.bottom-sheet .dropdown-menu {
|
|
22933
|
+
overscroll-behavior: contain;
|
|
22934
|
+
display: block;
|
|
22935
|
+
visibility: hidden;
|
|
22936
|
+
position: fixed !important;
|
|
22937
|
+
inset: auto 0 0 0 !important;
|
|
22938
|
+
max-height: 100dvh !important;
|
|
22939
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
|
|
22940
|
+
overflow: auto;
|
|
22941
|
+
-webkit-overflow-scrolling: touch;
|
|
22942
|
+
transform: translate3d(0, 100%, 0);
|
|
22943
|
+
transition: transform 0.3s, visibility 0s 0.3s;
|
|
22944
|
+
z-index: 1070;
|
|
22945
|
+
padding: 0.25rem !important;
|
|
22946
|
+
border-radius: 0;
|
|
22947
|
+
border: 0px;
|
|
22948
|
+
border-top: 1px solid #dee2e6;
|
|
22949
|
+
}
|
|
22950
|
+
.bottom-sheet .dropdown-menu > ul {
|
|
22951
|
+
max-height: clamp(300px, 60dvh, 100dvh) !important;
|
|
22952
|
+
}
|
|
22953
|
+
.bottom-sheet .dropdown-menu > li > a, .bottom-sheet .dropdown-menu > li .dropdown-item {
|
|
22954
|
+
padding: 10px 20px;
|
|
22955
|
+
overflow: hidden;
|
|
22956
|
+
text-overflow: ellipsis;
|
|
22957
|
+
white-space: nowrap;
|
|
22958
|
+
}
|
|
22959
|
+
.bottom-sheet .dropdown-menu > li.divider {
|
|
22960
|
+
padding: 0;
|
|
22961
|
+
}
|
|
22962
|
+
.bottom-sheet .dropdown-menu.show {
|
|
22963
|
+
transform: none !important;
|
|
22964
|
+
visibility: visible;
|
|
22965
|
+
transition-delay: 0s;
|
|
22966
|
+
top: auto;
|
|
22967
|
+
width: auto;
|
|
22968
|
+
}
|
|
22969
|
+
}
|
|
22970
|
+
|
|
22971
|
+
.icon-container .fa-nbb-none {
|
|
22972
|
+
border: 1px dotted #000;
|
|
22973
|
+
}
|
|
22974
|
+
.icon-container .nbb-fa-icons {
|
|
22975
|
+
margin: 0;
|
|
22976
|
+
}
|
|
22977
|
+
.icon-container .nbb-fa-icons i {
|
|
22978
|
+
width: 36px;
|
|
22979
|
+
height: 36px;
|
|
22980
|
+
cursor: pointer;
|
|
22981
|
+
line-height: 36px;
|
|
22982
|
+
text-align: center;
|
|
22983
|
+
color: #212529;
|
|
22984
|
+
margin: 4px;
|
|
22985
|
+
}
|
|
22986
|
+
.icon-container .nbb-fa-icons i:hover, .icon-container .nbb-fa-icons i.selected {
|
|
22987
|
+
background: rgb(51.4340909091, 122.2772727273, 183.4159090909);
|
|
22988
|
+
}
|
|
22989
|
+
|
|
22990
|
+
.alert-window {
|
|
22991
|
+
position: fixed;
|
|
22992
|
+
width: 300px;
|
|
22993
|
+
z-index: 10002;
|
|
22994
|
+
right: 20px;
|
|
22995
|
+
bottom: 0px;
|
|
22996
|
+
}
|
|
22997
|
+
.alert-window .alert {
|
|
22998
|
+
overflow: hidden;
|
|
22999
|
+
position: relative;
|
|
23000
|
+
}
|
|
23001
|
+
.alert-window .alert .alert-progress {
|
|
23002
|
+
width: 0;
|
|
23003
|
+
}
|
|
23004
|
+
.alert-window .alert .alert-progress.animate {
|
|
23005
|
+
width: calc(100% + 50px);
|
|
23006
|
+
}
|
|
23007
|
+
.alert-window .alert.alert-info {
|
|
23008
|
+
color: #5bc0de;
|
|
23009
|
+
}
|
|
23010
|
+
.alert-window .alert.alert-info .alert-progress {
|
|
23011
|
+
background-color: #5bc0de;
|
|
23012
|
+
}
|
|
23013
|
+
.alert-window .alert.alert-warning {
|
|
23014
|
+
color: #f0ad4e;
|
|
23015
|
+
}
|
|
23016
|
+
.alert-window .alert.alert-warning .alert-progress {
|
|
23017
|
+
background-color: #f0ad4e;
|
|
23018
|
+
}
|
|
23019
|
+
.alert-window .alert.alert-success {
|
|
23020
|
+
color: #5cb85c;
|
|
23021
|
+
}
|
|
23022
|
+
.alert-window .alert.alert-success .alert-progress {
|
|
23023
|
+
background-color: #5cb85c;
|
|
23024
|
+
}
|
|
23025
|
+
.alert-window .alert.alert-danger {
|
|
23026
|
+
color: #d9534f;
|
|
23027
|
+
}
|
|
23028
|
+
.alert-window .alert.alert-danger .alert-progress {
|
|
23029
|
+
background-color: #d9534f;
|
|
23030
|
+
}
|
|
23031
|
+
.alert-window .alert {
|
|
23032
|
+
background-color: var(--bs-body-bg);
|
|
23033
|
+
border: 0;
|
|
23034
|
+
border-left: 5px solid !important;
|
|
23035
|
+
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25), 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
|
|
23036
|
+
}
|
|
23037
|
+
|
|
23038
|
+
.ghost-scrollbar::-webkit-scrollbar {
|
|
23039
|
+
width: 10px;
|
|
23040
|
+
}
|
|
23041
|
+
.ghost-scrollbar::-webkit-scrollbar-track {
|
|
23042
|
+
border-radius: 8px;
|
|
23043
|
+
background-color: rgb(243.9, 244.1, 244.3);
|
|
23044
|
+
border: none;
|
|
23045
|
+
}
|
|
23046
|
+
.ghost-scrollbar::-webkit-scrollbar-thumb {
|
|
23047
|
+
border-radius: 8px;
|
|
23048
|
+
border: 2px solid transparent;
|
|
23049
|
+
background-clip: content-box;
|
|
23050
|
+
background-color: rgb(188.4, 189.6, 190.8);
|
|
23051
|
+
}
|
|
23052
|
+
|
|
23053
|
+
@supports (-moz-appearance: none) {
|
|
23054
|
+
.ghost-scrollbar {
|
|
23055
|
+
padding-right: 0.75rem !important;
|
|
23056
|
+
}
|
|
23057
|
+
}
|
|
23058
|
+
.visible-xs,
|
|
23059
|
+
.visible-sm,
|
|
23060
|
+
.visible-md,
|
|
23061
|
+
.visible-lg {
|
|
23062
|
+
display: none !important;
|
|
23063
|
+
}
|
|
23064
|
+
|
|
23065
|
+
.visible-xs-block,
|
|
23066
|
+
.visible-xs-inline,
|
|
23067
|
+
.visible-xs-inline-block,
|
|
23068
|
+
.visible-sm-block,
|
|
23069
|
+
.visible-sm-inline,
|
|
23070
|
+
.visible-sm-inline-block,
|
|
23071
|
+
.visible-md-block,
|
|
23072
|
+
.visible-md-inline,
|
|
23073
|
+
.visible-md-inline-block,
|
|
23074
|
+
.visible-lg-block,
|
|
23075
|
+
.visible-lg-inline,
|
|
23076
|
+
.visible-lg-inline-block {
|
|
23077
|
+
display: none !important;
|
|
23078
|
+
}
|
|
23079
|
+
|
|
23080
|
+
@media (max-width: 575.98px) {
|
|
23081
|
+
.visible-xs {
|
|
23082
|
+
display: block !important;
|
|
23083
|
+
}
|
|
23084
|
+
}
|
|
23085
|
+
|
|
23086
|
+
@media (max-width: 575.98px) {
|
|
23087
|
+
.visible-xs-block {
|
|
23088
|
+
display: block !important;
|
|
23089
|
+
}
|
|
23090
|
+
}
|
|
23091
|
+
|
|
23092
|
+
@media (max-width: 575.98px) {
|
|
23093
|
+
.visible-xs-inline {
|
|
23094
|
+
display: inline !important;
|
|
23095
|
+
}
|
|
23096
|
+
}
|
|
23097
|
+
|
|
23098
|
+
@media (max-width: 575.98px) {
|
|
23099
|
+
.visible-xs-inline-block {
|
|
23100
|
+
display: inline-block !important;
|
|
23101
|
+
}
|
|
23102
|
+
}
|
|
23103
|
+
|
|
23104
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
23105
|
+
.visible-sm {
|
|
23106
|
+
display: block !important;
|
|
23107
|
+
}
|
|
23108
|
+
}
|
|
23109
|
+
|
|
23110
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
23111
|
+
.visible-sm-block {
|
|
23112
|
+
display: block !important;
|
|
23113
|
+
}
|
|
23114
|
+
}
|
|
23115
|
+
|
|
23116
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
23117
|
+
.visible-sm-inline {
|
|
23118
|
+
display: inline !important;
|
|
23119
|
+
}
|
|
23120
|
+
}
|
|
23121
|
+
|
|
23122
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
23123
|
+
.visible-sm-inline-block {
|
|
23124
|
+
display: inline-block !important;
|
|
23125
|
+
}
|
|
23126
|
+
}
|
|
23127
|
+
|
|
23128
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
23129
|
+
.visible-md {
|
|
23130
|
+
display: block !important;
|
|
23131
|
+
}
|
|
23132
|
+
}
|
|
23133
|
+
|
|
23134
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
23135
|
+
.visible-md-block {
|
|
23136
|
+
display: block !important;
|
|
23137
|
+
}
|
|
23138
|
+
}
|
|
23139
|
+
|
|
23140
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
23141
|
+
.visible-md-inline {
|
|
23142
|
+
display: inline !important;
|
|
23143
|
+
}
|
|
23144
|
+
}
|
|
23145
|
+
|
|
23146
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
23147
|
+
.visible-md-inline-block {
|
|
23148
|
+
display: inline-block !important;
|
|
23149
|
+
}
|
|
23150
|
+
}
|
|
23151
|
+
|
|
23152
|
+
@media (min-width: 992px) {
|
|
23153
|
+
.visible-lg {
|
|
23154
|
+
display: block !important;
|
|
23155
|
+
}
|
|
23156
|
+
}
|
|
23157
|
+
|
|
23158
|
+
@media (min-width: 992px) {
|
|
23159
|
+
.visible-lg-block {
|
|
23160
|
+
display: block !important;
|
|
23161
|
+
}
|
|
23162
|
+
}
|
|
23163
|
+
|
|
23164
|
+
@media (min-width: 992px) {
|
|
23165
|
+
.visible-lg-inline {
|
|
23166
|
+
display: inline !important;
|
|
23167
|
+
}
|
|
23168
|
+
}
|
|
23169
|
+
|
|
23170
|
+
@media (min-width: 992px) {
|
|
23171
|
+
.visible-lg-inline-block {
|
|
23172
|
+
display: inline-block !important;
|
|
23173
|
+
}
|
|
23174
|
+
}
|
|
23175
|
+
|
|
23176
|
+
@media (max-width: 575.98px) {
|
|
23177
|
+
.hidden-xs {
|
|
23178
|
+
display: none !important;
|
|
23179
|
+
}
|
|
23180
|
+
}
|
|
23181
|
+
|
|
23182
|
+
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
23183
|
+
.hidden-sm {
|
|
23184
|
+
display: none !important;
|
|
23185
|
+
}
|
|
23186
|
+
}
|
|
23187
|
+
|
|
23188
|
+
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
23189
|
+
.hidden-md {
|
|
23190
|
+
display: none !important;
|
|
23191
|
+
}
|
|
23192
|
+
}
|
|
23193
|
+
|
|
23194
|
+
@media (min-width: 992px) {
|
|
23195
|
+
.hidden-lg {
|
|
23196
|
+
display: none !important;
|
|
23197
|
+
}
|
|
23198
|
+
}
|
|
23199
|
+
|
|
21987
23200
|
html {
|
|
21988
23201
|
overflow-y: scroll;
|
|
21989
23202
|
min-height: 100%;
|
|
@@ -22843,7 +24056,7 @@ noscript .posts li .profile span {
|
|
|
22843
24056
|
#search-form #search-fields.hidden {
|
|
22844
24057
|
max-width: 0;
|
|
22845
24058
|
}
|
|
22846
|
-
#search-form #search-fields input.form-control {
|
|
24059
|
+
#search-form #search-fields input.form-control, #search-form #search-fields input.bootstrap-tagsinput {
|
|
22847
24060
|
white-space: nowrap;
|
|
22848
24061
|
outline: none;
|
|
22849
24062
|
box-shadow: none;
|
|
@@ -23058,7 +24271,7 @@ label.dropdown-toggle {
|
|
|
23058
24271
|
margin-bottom: 12px;
|
|
23059
24272
|
font-size: 32px;
|
|
23060
24273
|
}
|
|
23061
|
-
.account .show-success .form-control {
|
|
24274
|
+
.account .show-success .form-control, .account .show-success .bootstrap-tagsinput {
|
|
23062
24275
|
border-color: #5cb85c;
|
|
23063
24276
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
|
|
23064
24277
|
padding-right: 2.25rem;
|
|
@@ -23072,7 +24285,7 @@ label.dropdown-toggle {
|
|
|
23072
24285
|
display: block;
|
|
23073
24286
|
margin-top: 0.25rem;
|
|
23074
24287
|
}
|
|
23075
|
-
.account .show-danger .form-control {
|
|
24288
|
+
.account .show-danger .form-control, .account .show-danger .bootstrap-tagsinput {
|
|
23076
24289
|
border-color: #d9534f;
|
|
23077
24290
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
|
|
23078
24291
|
padding-right: 2.25rem;
|
|
@@ -24517,7 +25730,7 @@ ul.topics-list li [data-numthumbs="1"], ul.categories-list li [data-numthumbs="1
|
|
|
24517
25730
|
.skin-quartz [component=post] .timeline-badge {
|
|
24518
25731
|
box-shadow: none !important;
|
|
24519
25732
|
}
|
|
24520
|
-
.skin-quartz .form-control::placeholder, .skin-quartz .bootstrap-tagsinput input::placeholder {
|
|
25733
|
+
.skin-quartz .form-control::placeholder, .skin-quartz .bootstrap-tagsinput::placeholder, .skin-quartz .bootstrap-tagsinput input::placeholder {
|
|
24521
25734
|
color: #f8f9fa !important;
|
|
24522
25735
|
}
|
|
24523
25736
|
.skin-quartz .topic-header, .skin-quartz .topic-list-header, .skin-quartz .position-sticky.bg-body {
|
|
@@ -24525,7 +25738,7 @@ ul.topics-list li [data-numthumbs="1"], ul.categories-list li [data-numthumbs="1
|
|
|
24525
25738
|
backdrop-filter: blur(5px);
|
|
24526
25739
|
}
|
|
24527
25740
|
|
|
24528
|
-
.skin-solar .form-control::placeholder {
|
|
25741
|
+
.skin-solar .form-control::placeholder, .skin-solar .bootstrap-tagsinput::placeholder {
|
|
24529
25742
|
color: #f8f9fa !important;
|
|
24530
25743
|
}
|
|
24531
25744
|
|