Some more CSS cleanups

This commit is contained in:
djmaze 2021-11-15 15:37:05 +01:00
parent db2a7a51c9
commit 203b884309
4 changed files with 4 additions and 12 deletions

View file

@ -5,10 +5,10 @@
}
.g-ui-link {
color: #369;
text-decoration: underline;
color: var(--link-color, #369);
cursor: pointer;
padding: 2px;
text-decoration: underline;
&:focus {
outline: 1px;

View file

@ -179,7 +179,7 @@
<span data-i18n="POPUPS_DOMAIN/BUTTON_WHITE_LIST"></span>
</label>
<div class="tab-content" role="tabpanel" aria-hidden="true">
<div class="alert alert-block" data-i18n="POPUPS_DOMAIN/WHITE_LIST_ALERT"></div>
<div class="alert" data-i18n="POPUPS_DOMAIN/WHITE_LIST_ALERT"></div>
<textarea class="input-xxlarge" style="width: 100%" rows="8" data-bind="value: whiteList" tabindex="-1"></textarea>
</div>
</div>

View file

@ -6,6 +6,7 @@
--main-bg-image: none; // "images/background.png"
--main-bg-size: auto;
--main-bg-repeat: repeat;
--link-color: #369;
// LOADING
--loading-color: #000; // #ddd

View file

@ -39,12 +39,3 @@
border-color: @infoBorder;
color: @infoText;
}
// Block alerts
// -------------------------
.alert-block {
padding-top: 14px;
padding-bottom: 14px;
}