CSS improvements

This commit is contained in:
cgfhtw
2023-12-22 11:34:51 +01:00
parent 7dbf29d655
commit cbd7566e3c
3 changed files with 24 additions and 0 deletions
+2
View File
@@ -1,5 +1,7 @@
@import './components/searchbar.css';
@import './components/verticalsplit.css';
@import './components/FilterComponent.css';
@import './components/Tabs.css';
@import './components/Notiz.css';
html {
+6
View File
@@ -41,3 +41,9 @@
.tabulator {
font-size: 1rem;
}
.tabulator-row.tabulator-selectable:focus {
box-shadow: 0 0 0 .24rem rgba(13,110,253,.25);
z-index: 1;
outline: 0;
}
+16
View File
@@ -0,0 +1,16 @@
.nav-item.nav-link:focus {
box-shadow: 0 0 0 .24rem rgba(13,110,253,.25);
z-index: 1;
outline: 0;
position: relative;
}
.nav-item.nav-link:focus::after {
content: "";
display: block;
position: absolute;
left: -.5rem;
right: -.5rem;
top: calc(100% + 1px);
background: white;
height: .25rem;
}