500 lines
7.8 KiB
SCSS
Raw Normal View History

@import 'profile.scss';
2023-01-23 16:38:16 -06:00
$dp-background-color: #191c20;
$dp-cell-focus-background-color: rgba(255, 255, 255, 0.05);
@import '../../lib/vanillajs-datepicker/sass/datepicker';
2022-04-19 18:43:58 -05:00
:root {
2022-04-28 17:22:01 -05:00
--blue-color: #117ac0;
--yellow-color: #fe7e4c;
--yellow-color-dark: #fe7e4c88;
--yellow-color-very-dark: #fe7e4c22;
--yellow-color-light: #fe7e4c88;
--yellow-color-very-light: #fe7e4c22;
--red-color: #ff6060;
--red-color-dark: #ff606088;
--red-color-very-dark: #ff606022;
--red-color-light: #ff606088;
--red-color-very-light: #ff606022;
--green-color: #8cc982;
--lm-base-body-bg-color: rgb(245, 245, 245);
--lm-card-bg-color: var(--gray-color-light);
--gray-color-light: white;
--card-border-width: 0;
--dm-modal-overlay-bg-color: rgba(0, 0, 0, 0.8);
}
.server-history-row {
2022-04-28 17:22:01 -05:00
height: 100px;
padding: 0 !important;
}
.canvasjs-chart-credit {
2022-04-28 17:22:01 -05:00
display: none;
}
.table thead th,
.table th,
.table td {
2022-04-28 17:22:01 -05:00
border: none;
}
.server-history {
}
.border-top {
2022-04-28 17:22:01 -05:00
border-top: 1px solid var(--primary-color) !important;
}
@media (min-width: 768px) {
2022-04-28 17:22:01 -05:00
.d-md-table-header-group {
display: table-header-group !important;
}
}
@media (min-width: 992px) {
2022-04-28 17:22:01 -05:00
.d-lg-table-header-group {
display: table-header-group !important;
}
}
#console_command_response {
2022-04-28 17:22:01 -05:00
min-height: 20rem;
}
#console_command_response hr {
2022-04-28 17:22:01 -05:00
border-color: #6c757d;
}
#console .form-control, #console button {
2022-04-28 17:22:01 -05:00
border-radius: 0;
border-left: 0;
border-right: 0;
}
.close {
2022-04-28 17:22:01 -05:00
text-shadow: none !important;
}
.modal-footer {
2022-04-28 17:22:01 -05:00
border-top-color: var(--secondary-color);
}
.modal-header {
2022-04-28 17:22:01 -05:00
border-bottom-color: var(--secondary-color);
}
@-webkit-keyframes rotation {
2022-04-28 17:22:01 -05:00
from {
-webkit-transform: rotate(359deg);
}
2022-04-28 17:22:01 -05:00
to {
-webkit-transform: rotate(0deg);
}
}
.layout-loading-icon {
2022-04-28 17:22:01 -05:00
position: fixed !important;
left: 50%;
top: 50% !important;
margin-left: -37px;
margin-top: -37px;
color: var(--dm-base-text-color);
z-index: 100;
font-size: 4rem;
-webkit-animation: rotation 1s infinite linear;
background-color: var(--primary-color);
border-radius: 40px;
padding: 5px;
visibility: hidden;
}
.loader-load-more {
2022-04-28 17:22:01 -05:00
border-radius: 0;
}
.input-border-transition {
2022-04-28 17:22:01 -05:00
-webkit-transition: border 500ms ease-out;
-moz-transition: border 500ms ease-out;
-o-transition: border 500ms ease-out;
}
.input-text-danger {
2022-04-28 17:22:01 -05:00
border-color: var(--red-color) !important;
}
.form-control:focus {
2022-04-28 17:22:01 -05:00
box-shadow: none;
-webkit-box-shadow: none;
}
.striped > div:nth-child(even) {
2022-04-28 17:22:01 -05:00
background-color: rgba(0, 0, 0, 0.125);
}
.striped > div:nth-child(odd) {
2022-04-28 17:22:01 -05:00
background-color: rgba(0, 0, 0, 0.2);
}
.client-rating-graph {
2022-04-28 17:22:01 -05:00
min-height: 100px;
}
.client-rating-icon {
}
.client-rating-change-up, .client-rating-change-down {
2022-04-28 17:22:01 -05:00
font-size: 0.75rem;
}
.client-rating-change-amount {
2022-04-28 17:22:01 -05:00
font-size: 1rem;
}
2022-01-24 09:56:48 -06:00
.oi, .table-sort-column {
2022-04-28 17:22:01 -05:00
cursor: pointer;
}
#footer_text {
2022-04-28 17:22:01 -05:00
font-size: 0.85rem;
}
.footer-mobile {
2022-04-28 17:22:01 -05:00
position: fixed;
bottom: 1em;
right: 1em;
}
.mt-n1 {
2022-04-28 17:22:01 -05:00
margin-top: -0.25rem !important;
}
.mt-n2 {
2022-04-28 17:22:01 -05:00
margin-top: -0.5rem !important;
}
/* Configuration */
.configuration-form input[type='text'], .configuration-form input[type='number'], input.text-box {
2022-04-28 17:22:01 -05:00
border: 1px solid var(--secondary-color);
}
.hide {
2022-04-28 17:22:01 -05:00
display: none;
}
.client-location-flag {
2022-04-28 17:22:01 -05:00
width: 3rem;
height: 1.5rem;
background-image: url('/images/radar/hud_weapons/hud_neutral.png');
background-size: contain;
background-repeat: no-repeat
}
2019-08-02 18:04:34 -05:00
2022-04-19 18:43:58 -05:00
/*
2019-08-02 18:04:34 -05:00
.text-color-code-0 {
color: $dark;
}
.text-color-code-1 {
color: $red;
}
.text-color-code-2 {
color: $green;
}
.text-color-code-3 {
2022-04-19 18:43:58 -05:00
// color: $yellow;
2019-08-02 18:04:34 -05:00
}
.text-color-code-4 {
color: $blue;
}
.text-color-code-5 {
2022-04-19 18:43:58 -05:00
// color: $teal;
2019-08-02 18:04:34 -05:00
}
.text-color-code-5 {
2022-04-19 18:43:58 -05:00
//color: $purple;
2019-08-02 18:04:34 -05:00
}
.text-color-code-7 {
color: $white;
}
.text-color-code-8, .text-color-code-9 {
color: grey;
}
.text-color-code-58 {
2019-08-04 17:06:07 -05:00
animation: color-change 54s infinite;
2019-08-02 18:04:34 -05:00
}
2022-04-19 18:43:58 -05:00
*/
2019-08-02 18:04:34 -05:00
@keyframes color-change {
2022-04-28 17:22:01 -05:00
0% {
color: #ff0000;
}
2019-08-02 18:04:34 -05:00
2022-04-28 17:22:01 -05:00
16.66% {
color: #ffff00;
}
2019-08-02 18:04:34 -05:00
2022-04-28 17:22:01 -05:00
33.33% {
color: #00ff00;
}
2019-08-02 18:04:34 -05:00
2022-04-28 17:22:01 -05:00
50% {
color: #00ffff;
}
2019-08-02 18:04:34 -05:00
2022-04-28 17:22:01 -05:00
66.66% {
color: #0000ff;
}
2019-08-02 18:04:34 -05:00
2022-04-28 17:22:01 -05:00
83.33% {
color: #ff00ff;
}
2019-08-02 18:04:34 -05:00
2022-04-28 17:22:01 -05:00
100% {
color: #ff0000;
}
2019-08-02 18:04:34 -05:00
}
2020-07-14 15:48:38 -05:00
.action-kick-button {
2022-04-28 17:22:01 -05:00
color: #492121;
margin-top: 0.25rem;
2020-07-14 15:48:38 -05:00
}
.action-kick-button:hover {
2022-04-28 17:22:01 -05:00
color: #ff6060 !important;
color: rgba(255, 69, 69, 0.85) !important;
2020-07-14 15:48:38 -05:00
}
2022-04-28 17:22:01 -05:00
.text-force-break {
word-break: break-all;
overflow-wrap: break-word;
}
div.card {
2022-04-28 17:22:01 -05:00
min-width: 15rem;
}
.stat-card {
2022-04-28 17:22:01 -05:00
max-width: 15rem;
}
#client_stats_summary a:hover {
2022-04-28 17:22:01 -05:00
color: #e0e0e0;
}
.cursor-help {
cursor: help;
}
.text-light-green {
2022-04-28 17:22:01 -05:00
color: #88aa82;
}
.nav-icon {
2022-04-28 17:22:01 -05:00
padding-left: 1rem !important;
padding-right: 1rem !important;
line-height: 1.45rem !important;
2022-01-24 09:56:48 -06:00
}
.team-allies-bg {
2022-04-28 17:22:01 -05:00
background-color: rgba(0, 0, 139, 0.1);
}
.team-axis-bg {
2022-04-28 17:22:01 -05:00
background-color: rgba(139, 0, 0, 0.1);
}
2022-03-28 21:34:52 -05:00
.team-spectator-bg {
2022-04-28 17:22:01 -05:00
background-color: rgba(200, 200, 0, 0.1);
2022-03-28 21:34:52 -05:00
}
2022-04-19 18:43:58 -05:00
#penalty_table tr.d-table-row, {
2022-04-28 17:22:01 -05:00
border: 0;
2022-04-19 18:43:58 -05:00
}
.server-header {
2022-04-28 17:22:01 -05:00
--dm-navbar-link-text-color-hover: white;
--lm-navbar-link-text-color-hover: white;
2022-04-19 18:43:58 -05:00
}
2022-04-28 17:22:01 -05:00
2022-04-19 18:43:58 -05:00
#console_server_select {
2022-04-28 17:22:01 -05:00
--input-border-width: 0;
2022-04-19 18:43:58 -05:00
}
.sidebar-link > .oi {
2022-04-28 17:22:01 -05:00
font-size: 1.2rem;
2022-04-19 18:43:58 -05:00
}
table {
2022-04-28 17:22:01 -05:00
border-collapse: collapse;
border-radius: var(--base-border-radius) !important;
overflow: hidden;
2022-04-19 18:43:58 -05:00
}
.ui-error-icon {
2022-04-28 17:22:01 -05:00
background-image: url('/images/ui/error-face.svg');
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
2022-04-19 18:43:58 -05:00
}
/* Sidenav */
.on-this-page-nav {
2022-04-28 17:22:01 -05:00
position: fixed;
margin-right: 2rem;
z-index: 20;
background-color: var(--lm-base-body-bg-color);
padding: 0.5rem;
border-radius: 0.4rem;
2022-04-19 18:43:58 -05:00
}
2022-04-28 17:22:01 -05:00
2022-04-19 18:43:58 -05:00
.dark-mode .on-this-page-nav {
2022-04-28 17:22:01 -05:00
background-color: #25282c;
2022-04-19 18:43:58 -05:00
}
2022-04-28 17:22:01 -05:00
2022-04-19 18:43:58 -05:00
.on-this-page-nav .title {
2022-04-28 17:22:01 -05:00
font-weight: 500;
font-size: 1.5rem;
margin-bottom: 1rem;
2022-04-19 18:43:58 -05:00
}
2022-04-28 17:22:01 -05:00
2022-04-19 18:43:58 -05:00
.on-this-page-nav a {
2022-04-28 17:22:01 -05:00
text-align: left;
display: block;
padding: 0.4rem 0 0.4rem 2rem;
line-height: 1.4;
color: rgba(0, 0, 0, 0.7);
border-left: 1px solid rgba(0, 0, 0, 0.15);
2022-04-19 18:43:58 -05:00
}
2022-04-28 17:22:01 -05:00
2022-04-19 18:43:58 -05:00
.dark-mode .on-this-page-nav a {
2022-04-28 17:22:01 -05:00
color: rgba(255, 255, 255, 0.65);
border-color: rgba(255, 255, 255, 0.15);
2022-04-19 18:43:58 -05:00
}
2022-04-28 17:22:01 -05:00
2022-04-19 18:43:58 -05:00
.on-this-page-nav a:hover,
.dark-mode .on-this-page-nav a:hover, {
2022-04-28 17:22:01 -05:00
color: #1890ff;
text-decoration: none;
2022-04-19 18:43:58 -05:00
}
@media (max-width: 1200px) {
2022-04-28 17:22:01 -05:00
.on-this-page-nav-container {
display: none;
}
2022-04-19 18:43:58 -05:00
}
.no-decoration {
2022-04-28 17:22:01 -05:00
text-decoration: none !important;
2022-04-19 18:43:58 -05:00
}
.h-125 {
2022-04-28 17:22:01 -05:00
height: 12.5rem !important;
2022-04-19 18:43:58 -05:00
}
.w-125 {
2022-04-28 17:22:01 -05:00
width: 12.5rem !important;
2022-04-19 18:43:58 -05:00
}
table.with-fixed-layout {
2022-04-28 17:22:01 -05:00
table-layout: fixed;
2022-04-19 18:43:58 -05:00
}
table.with-auto-width td {
2022-04-28 17:22:01 -05:00
width: 1px;
white-space: nowrap;
2022-04-19 18:43:58 -05:00
}
.bg-light-ex-lm {
2022-04-28 17:22:01 -05:00
background-color: var(--lm-base-body-bg-color);
2022-04-19 18:43:58 -05:00
}
.progress-bar {
2022-04-28 17:22:01 -05:00
height: 2px;
background-color: var(--primary-color);
width: 100%;
overflow: hidden;
2022-04-19 18:43:58 -05:00
}
.progress-bar-value {
2022-04-28 17:22:01 -05:00
width: 100%;
height: 100%;
background-color: black;
animation: indeterminateAnimation 2s infinite linear;
transform-origin: 0 50%;
2022-04-19 18:43:58 -05:00
}
@keyframes indeterminateAnimation {
2022-04-28 17:22:01 -05:00
0% {
transform: translateX(0) scaleX(0);
}
40% {
transform: translateX(0) scaleX(0.4);
}
100% {
transform: translateX(100%) scaleX(0.5);
}
}
img.social-icon {
height: 1.6rem;
2022-04-19 18:43:58 -05:00
}
2022-06-16 09:46:01 -05:00
2022-06-16 10:07:03 -05:00
.sidebar-link .oi, .sidebar-link img {
min-width: 1.2rem;
margin-right: 0.75rem;
2022-06-16 09:46:01 -05:00
}
table.no-cell-divider tr {
//border: none !important;
border-color: transparent !important;
}
table.no-cell-divider td, table.no-cell-divider th {
padding: 0.25rem 1.5rem;
font-weight: normal;
}
table.no-cell-divider td.first-row, table.no-cell-divider th.first-row {
padding-top: 1.5rem;
}
table.no-cell-divider td.last-row, table.no-cell-divider th.last-row {
padding-bottom: 1.5rem;
}
2023-01-23 16:38:16 -06:00
.datepicker-picker {
padding: 1rem;
}
.view-switch {
margin: 0 1rem 0 1rem;
}
.datepicker-header {
margin-bottom: 1rem;
}
.datepicker-view .days {
margin: auto !important
}
@media (max-width: 768px) {
:root {
--sidebar-width: 90%;
}
}