Files
5chan/src/components/board-buttons/board-buttons.module.css
T

146 lines
2.3 KiB
CSS
Raw Normal View History

.mobileBoardButtons {
text-align: center;
2024-06-30 11:47:09 +02:00
}
.addMargin {
margin-bottom: 7px;
}
.mobileBoardButtons button {
2024-04-03 22:52:27 +02:00
text-transform: capitalize;
2024-06-30 11:47:09 +02:00
margin: 5px 2px;
2024-04-03 22:52:27 +02:00
}
.mobileBoardButtons .secondRow {
margin-top: -5px;
padding-bottom: 20px;
}
.mobileBoardButtons {
margin-top: -3px;
}
.mobileBoardButtons .autoCheckbox {
margin: 0 3px 0 0;
position: relative;
top: -2px;
border-radius: 0;
height: 10px;
width: 10px;
}
.disabledButton:hover {
cursor: not-allowed !important;
}
2024-04-03 22:52:27 +02:00
.mobileBoardButtons a, .desktopBoardButtons a {
all: unset;
}
.showBlockedButton {
color: var(--button-desktop-text-color);
}
.showBlockedButton:hover {
color: var(--button-desktop-text-color-hover);
cursor: pointer;
}
2024-05-31 18:18:42 +02:00
.mobileBoardButtons .options {
padding: 10px 0;
}
2024-06-01 18:13:41 +02:00
.desktopBoardButtons {
2024-09-04 20:48:20 +02:00
text-transform: capitalize;
2024-06-01 18:13:41 +02:00
}
.desktopBoardButtons::after {
content: "";
display: table;
clear: both;
}
.desktopBoardButtons .rightSideButtons {
float: right;
2024-09-04 20:48:20 +02:00
display: flex;
align-items: center;
2024-06-01 18:13:41 +02:00
}
.modQueueControls {
display: inline-flex;
align-items: center;
gap: 6px;
margin-left: 8px;
font-size: 12px;
}
.modQueueControls label {
display: inline-flex;
align-items: center;
gap: 6px;
}
.alertThresholdInput {
width: 50px;
}
.mobileBoardButtons .modQueueControls {
display: flex;
justify-content: center;
margin: 6px 0;
}
.desktopBoardButtons .rightSideButtons select {
margin-right: 5px;
}
.mobileCatalogOptionsPadding {
padding-top: 15px;
}
.filteredThreadsCount {
text-transform: none !important;
}
2024-09-10 19:19:39 +02:00
.mobileBoardButtons {
text-transform: capitalize;
}
.mobileBoardButtons .filteredThreadsCount {
display: block;
margin-top: 3px;
margin-bottom: 15px;
}
.searchOPsInput {
height: 16px;
line-height: 16px;
margin-left: 2px;
padding: 0 2px;
width: 120px;
margin: 0px;
margin-right: 4px;
padding: 0 2px;
border: var(--post-form-field-input-border, revert);
background-color: var(--post-form-field-input-background-color, revert);
color: var(--post-form-field-input-color);
outline: none;
font-family: arial, helvetica, sans-serif;
font-size: 10pt;
}
.searchOPsInput:focus {
border: var(--post-form-field-input-focus-border, revert);
}
@media (max-width: 640px) {
.desktopBoardButtons {
display: none;
}
}
@media (min-width: 640px) {
.mobileBoardButtons {
display: none;
}
}