Skip to content
Snippets Groups Projects
Commit 586ca04a authored by Benjamin Becker's avatar Benjamin Becker
Browse files

adds borders for tap

parent 150c08bd
Branches
Tags 2.18.0
No related merge requests found
......@@ -477,6 +477,10 @@ ul.trapo-nav-list li.trapo-navbar-right {
box-sizing: border-box;
}
#field-sitewide-search:focus {
outline: 1px solid rgba(82, 168, 236, 0.8);
}
.trapo-btn-search {
height: 36px;
width: 36px;
......@@ -801,6 +805,10 @@ ul.trapo-nav-list li.trapo-navbar-right {
margin-bottom: 5px;
}
.trapo-filter-nav-item:focus-within {
border: 1px dotted black;
}
.trapo-empty-filter {
font-size: 0.75rem;
font-weight: 300;
......@@ -1353,6 +1361,10 @@ a.trapo-timerange-submit:hover {
display: flex;
}
.pagination ul li {
margin-right: 1px;
}
.pagination ul li a {
background-color: #d1d1d1;
display: -webkit-box;
......@@ -1366,7 +1378,7 @@ a.trapo-timerange-submit:hover {
align-items: center;
height: 35px;
width: 35px;
border: 10px solid white;
border: 9px solid white;
color: black;
}
......@@ -1374,6 +1386,10 @@ a.trapo-timerange-submit:hover {
background-color: transparent;
}
.pagination ul li:last-child {
margin: 0;
}
.pagination ul li.active a {
background-color: #003064;
color: white;
......
This diff is collapsed.
......@@ -32,6 +32,9 @@ $trapo-desktop-main-content-width: 630px;
$trapo-border-width-thin: 2px;
$trapo-border-radius: 3px;
// borders
$trapo-border-focus: 1px dotted $trapo-textcolor-default;
// media queries
$trapo-break-small: 768px;
......@@ -503,6 +506,10 @@ body.filters-modal .trapo-secondary {
height: 40px;
border-radius: 0px;
box-sizing: border-box;
&:focus {
outline: 1px solid rgba(82,168,236,0.8);
}
}
.trapo-btn-search {
......@@ -756,6 +763,10 @@ body.filters-modal .trapo-secondary {
display: flex;
align-items: center;
margin-bottom: 5px;
&:focus-within {
border: $trapo-border-focus;
}
}
.trapo-empty-filter {
......@@ -1183,6 +1194,8 @@ a.trapo-timerange-submit {
display: flex;
li {
margin-right: 1px;
a {
background-color: $trapo-background-dark-gray;
display: flex;
......@@ -1190,7 +1203,7 @@ a.trapo-timerange-submit {
align-items: center;
height: 35px;
width: 35px;
border: 10px solid $trapo-background-white;
border: 9px solid $trapo-background-white;
color: black;
}
......@@ -1202,6 +1215,10 @@ a.trapo-timerange-submit {
}
}
&:last-child {
margin: 0;
}
&.active {
a {
background-color: $trapo-blue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment