mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
27 lines
495 B
SCSS
27 lines
495 B
SCSS
//
|
|
// Styles
|
|
// --------------------------------------------------
|
|
|
|
@mixin baseline {
|
|
margin: 1.6em 0;
|
|
}
|
|
|
|
// User select
|
|
// For selecting text on the page
|
|
|
|
@mixin user-select($select) {
|
|
-webkit-user-select: $select;
|
|
-moz-user-select: $select;
|
|
-ms-user-select: $select; // IE10+
|
|
user-select: $select;
|
|
}
|
|
|
|
// WebKit-style focus
|
|
|
|
@mixin tab-focus() {
|
|
// Default
|
|
outline: thin dotted;
|
|
// WebKit
|
|
outline: 0px auto -webkit-focus-ring-color;
|
|
outline-offset: -2px;
|
|
}
|