84 lines
1.3 KiB
SCSS
Raw Normal View History

2022-04-07 01:18:24 +02:00
//Gumbi
.dt-buttons {
margin: 0 12px 16px 12px;
}
button.dt-button {
font-weight: 400;
2022-04-07 01:18:24 +02:00
padding: 5px 32px;
font-size: 14px;
margin-right: 4px;
background-color: $white;
border: 1px solid $gray;
border-radius: 2px;
&:hover {
background-color: darken($white, 5%);
2022-04-07 01:18:24 +02:00
}
&.active {
border-color: $blue;
}
2022-04-07 01:18:24 +02:00
}
//Dodatni gumbi za vidnost stolpcev
.dt-button-collection {
padding-top: 48px;
}
button.buttons-columnVisibility {
color: $black;
background-color: $white;
border: 1px solid $gray;
2022-04-07 01:18:24 +02:00
&:hover {
background-color: darken($white, 5%);
2022-04-07 01:18:24 +02:00
}
&.active {
border-color: $blue;
2022-04-07 01:18:24 +02:00
}
margin-bottom: 8px;
margin-right: 4px;
}
// Search + število prikazanih
.dataTables_length {
margin-left: 12px;
select {
border: 1px solid $dark-gray;
box-sizing: border-box;
border-radius: 2px;
cursor: pointer;
font-size: 16px;
padding: 3px 7px;
option {
font-size: 16px;
line-height: 18px;
}
}
}
.dataTables_filter {
input {
border: 1px solid $dark-gray;
box-sizing: border-box;
border-radius: 2px;
height: 40px;
font-size: 16px;
padding: 9px 7px;
}
}
.dataTables_info {
margin-left: 12px;
}