Skip to content
Snippets Groups Projects
Commit c375f882 authored by Claas Kazzer's avatar Claas Kazzer :speech_balloon: Committed by Robert Lange
Browse files

refs #23447 finc: Revises anchor underlines

parent 31835ec7
No related merge requests found
......@@ -9,14 +9,23 @@
// ************ Link text decoration *******************************
// *****************************************************************
.main,
.mainbody {
a {
text-decoration: $mainbody-link-text-decoration;
// Fixme: Consider better way to differentiate between underlined and non-underlined elements - Ck
.record-list,
.media-body {
a:not(.btn) {
text-decoration: $mainbody-link-text-decoration;
}
// 'Merken' etc. in result list
.result-links a:not(.btn) {
text-decoration: $result-links-text-decoration;
}
}
}
// *****************************************************************
// ************ Hide empty containers ******************************
// *****************************************************************
......
......@@ -191,7 +191,7 @@ $mainbody-link-text-decoration: $link-text-decoration !default;
$btn-default-color: $oil !default;
$btn-text-decoration: $link-text-decoration !default;
$btn-text-decoration: none !default;
// Use darker text color when default-buttons are used on white BG (new class: bth-transparent
// for updateCart in search results, date-range slider in sidebar and adv search
......@@ -990,6 +990,7 @@ $result-list-result-title-font-weight: normal !default;
// Record entry-related links in result list, incl. QR codes, public favorites lists etc.
$result-links-fa-icons-text-align: left !default;
$result-links-text-decoration: none !default;
// Favorites list in MyAccount
......@@ -1094,7 +1095,7 @@ $pager-hover-color: $black !default;
$pager-border: $border-default-styles !default;
$pager-border-radius: 0 !default;
$pager-text-decoration: none !default;
......@@ -1112,7 +1113,7 @@ $book-bag-add-to-in-sidebar-toggler-color: $brand-primary !default;
$record-view-toolbar-button-padding-add-to-bookbag: 1.2rem !default;
$book-bag-add-to-in-sidebar-toggler-padding: $record-view-toolbar-button-padding $record-view-toolbar-button-padding-add-to-bookbag !default;
$book-bag-add-to-in-sidebar-toggler-text-align-xs: left !default;
$book-bag-add-to-in-sidebar-toggler-text-decoration: $link-text-decoration !default;
$book-bag-add-to-in-sidebar-toggler-text-decoration: none !default;
$book-bag-add-to-in-sidebar-toggler-width: 100% !default;
$book-bag-add-to-icon-content: '\f067' !default;
......@@ -1218,6 +1219,7 @@ $icon-with-text-warning-color: $brand-warning !default;
// *****************************************************************
$record-tabs-padding-left: 1em !default;
$record-tabs-padding-left-xs: 0 !default;
$record-tabs-nav-text-decoration: none !default;
$record-tabs-tab-content-padding: ($grid-gutter-width / 2) !default;
$record-tabs-tab-content-a-word-break: break-word !default;
......
......@@ -82,6 +82,7 @@
// show-all-filters-toggler
.filters-toggle {
float: $search-filter-all-filters-toggle;
text-decoration: $search-filter-text-decoration;
}
}
......
......@@ -127,9 +127,9 @@
}
}
/* ***************************************************************************************** */
/* TODO move following styles to seprate component (_collection-view.scss) in finc or de_105 */
/* TODO upcoming refs #22979 */
// ***************************************************************************************** */
// TODO move following styles to seprate component (_collection-view.scss) in finc or de_105 */
// TODO upcoming refs #22979 */
.collection-control {
display: inline-block;
......
......@@ -39,6 +39,10 @@
margin-top: $pager-margin-top-xs;
}
a {
text-decoration: $pager-text-decoration;
}
.disabled {
display: none;
}
......
......@@ -11,6 +11,10 @@
@media (max-width: $screen-xs-max) {
padding-left: $record-tabs-padding-left-xs;
}
.nav-tabs a {
text-decoration: $record-tabs-nav-text-decoration;
}
}
// Add left and right borders
......
......@@ -4,15 +4,8 @@
// ************ General ********************************************
// *****************************************************************
// Sidebar width, when off-canvas is _off_;
// For more on off-canvas see offcanvas.scss
.sidebar {
body:not(.offcanvas) & {
@media (max-width: $screen-xs-max) {
width: 100%;
}
}
.sidebar {
// #13625 avoid ugly linebreaks with overlong words, RL
-moz-hyphens: auto;
-ms-hyphens: auto;
......@@ -27,6 +20,20 @@
padding-top: $mainbody-sidebar-top-padding-xs;
}
a {
text-decoration: $sidebar-facet-link-text-decoration;
}
// Sidebar width, when off-canvas is _off_;
// For more on off-canvas see offcanvas.scss
body:not(.offcanvas) & {
@media (max-width: $screen-xs-max) {
width: 100%;
}
}
// pull content to right border for sidebar right
&.right {
@include pull-sidebar-to-right($margin-right-width);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment