tahoma2d/stuff/config/qss/Default/less/base/mixins.less

26 lines
789 B
Text
Raw Normal View History

// -----------------------------------------------------------------------------
2017-08-29 06:40:43 +12:00
// Mixins & Functions
// -----------------------------------------------------------------------------
// Common Typography
// -----------------------------------------------------------------------------
2017-08-29 06:40:43 +12:00
// Calls the code font
.text-code() {
font-family: 'Courier New', monospace;
}
// Selected Objects and Hover States
// -----------------------------------------------------------------------------
2017-08-29 06:40:43 +12:00
// Calls the primary selected object style
.selected-primary() {
background-color: @selected-bg-color;
color: @selected-text-color;
}
2017-08-29 06:40:43 +12:00
// Calls the secondary selected object style
.selected-secondary() {
background-color: @selected-bg-color-secondary;
color: @selected-text-color-secondary;
}