21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-02 00:40:49 +02:00
chexpire/app/javascript/stylesheets/components/checks.scss

53 lines
1.8 KiB
SCSS
Raw Normal View History

// Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
// License: GNU AGPL-3+ (see full text in LICENSE file)
2018-07-05 12:26:57 +02:00
.checks-table {
2018-06-05 17:27:12 +02:00
.action a {
color: black;
}
}
2018-07-20 18:45:29 +02:00
//badges' style
2018-07-20 18:45:29 +02:00
.badge.badge-info.ssl {
2018-07-20 18:45:29 +02:00
background-color: map-get($theme-colors, quaternary);
color: #ffffff;
}
.badge.badge-info.domain {
background-color: map-get($theme-colors, primary);
2018-07-20 18:45:29 +02:00
color: #ffffff;
}
// filter buttons' style
.btn.btn-sm.btn-outline-info.ssl, .btn.btn-sm.btn-outline-info.ssl:hover, .btn.btn-sm.btn-outline-info.domain, .btn.btn-sm.btn-outline-info.domain:hover, .btn.btn-sm.btn-outline-info.with_error, .btn.btn-sm.btn-outline-info.with_error:hover, .btn.btn-sm.btn-info.active.ssl, .btn.btn-sm.btn-info.active.domain, .btn.btn-sm.btn-info.active.with_error {
font-weight: bold;
2018-07-20 18:45:29 +02:00
color: #ffffff;
}
.btn.btn-sm.btn-info.ssl, .btn.btn-sm.btn-outline-info.ssl {
border-color: map-get($theme-colors, quaternary);
color: map-get($theme-colors, quaternary);
}
.btn.btn-sm.btn-info.domain, .btn.btn-sm.btn-outline-info.domain {
border-color: map-get($theme-colors, primary);
color: map-get($theme-colors, primary);
}
.btn.btn-sm.btn-info.with_error, .btn.btn-sm.btn-outline-info.with_error {
2018-07-20 18:45:29 +02:00
border-color: map-get($theme-colors, tertiary);
color: map-get($theme-colors, tertiary);
}
.btn.btn-sm.btn-info.ssl:hover, .btn.btn-sm.btn-outline-info.ssl:hover, .btn.btn-sm.btn-info.active.ssl {
background-color: map-get($theme-colors, quaternary);
}
.btn.btn-sm.btn-info.domain:hover, .btn.btn-sm.btn-outline-info.domain:hover, .btn.btn-sm.btn-info.active.domain {
background-color: map-get($theme-colors, primary);
}
.btn.btn-sm.btn-info.with_error:hover, .btn.btn-sm.btn-outline-info.with_error:hover, .btn.btn-sm.btn-info.active.with_error {
2018-07-20 18:45:29 +02:00
background-color: map-get($theme-colors, tertiary);
}