2019-11-27 15:31:49 +07:00
|
|
|
|
/**
|
|
|
|
|
* Miscs
|
|
|
|
|
*/
|
|
|
|
|
|
2020-09-11 23:22:50 +07:00
|
|
|
|
// Reboot based on :
|
|
|
|
|
// - normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
|
|
|
|
|
// - sanitize.css v12.0.1 | CC0 1.0 Universal | github.com/csstools/sanitize.css
|
2019-11-27 15:31:49 +07:00
|
|
|
|
// ––––––––––––––––––––
|
|
|
|
|
|
2020-09-11 23:22:50 +07:00
|
|
|
|
// 1. Add the correct box sizing in Firefox
|
|
|
|
|
// 2. Show the overflow in Edge and IE
|
2019-11-27 15:31:49 +07:00
|
|
|
|
hr {
|
|
|
|
|
box-sizing: content-box; // 1
|
|
|
|
|
height: 0; // 1
|
|
|
|
|
overflow: visible; // 2
|
|
|
|
|
border: none;
|
2021-07-02 16:54:41 +07:00
|
|
|
|
border-top: 1px solid var(--muted-border-color);
|
2019-11-27 15:31:49 +07:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-11 23:22:50 +07:00
|
|
|
|
// Add the correct display in IE 10+
|
2019-11-27 15:31:49 +07:00
|
|
|
|
[hidden],
|
|
|
|
|
template {
|
2021-10-23 12:35:15 +07:00
|
|
|
|
@if $enable-important {
|
|
|
|
|
display: none !important;
|
2021-10-24 12:33:20 +07:00
|
|
|
|
} @else {
|
2021-10-23 12:35:15 +07:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
2019-11-27 15:31:49 +07:00
|
|
|
|
}
|
2020-09-11 23:22:50 +07:00
|
|
|
|
|
|
|
|
|
// Add the correct display in IE 9-
|
|
|
|
|
canvas {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|