0
0
mirror of https://github.com/mumble-voip/mumble.git synced 2024-12-04 20:47:21 +00:00
mumble-voip_mumble/themes/Default/source/OSX Lite.scss
Robert Adam 2cd4635e85 MAINT: Integrate theme submodule
The theme is now integrated into the main repository. This facilitates
future work on it as we don't have to work across two repositories.

The theme is overtaken from https://github.com/mumble-voip/mumble-theme
without any modifications to it. All file from there are copied to this
repo now.

The theme's directory was renamed from "Mumble" to "Default" in order to
a) Make the name more descriptive
b) Avoid conflicts updating already checked out workspaces (git would
report conflicts if the new dir was called the same as the old one)
2021-06-01 08:26:51 +02:00

62 lines
1.2 KiB
SCSS

/*
* Mumble Lite Theme for OSX
* https://github.com/mumble-voip/mumble-theme
*
* Based on MetroMumble Theme by xPoke
* https://github.com/xPoke
*
* Originally forked from Flat Mumble Theme by xPaw (xpaw.ru)
*
* Licensed under The Do What The Fuck You Want To Public License (WTFPL)
*/
// This is a file you could modify if you are making your own skin.
// See README.md
// Add your own custom QSS at the end of this file
// Import skin definitions
@import 'Imports/Lite Definitions';
// OSX specific definitions
$font-family: -apple-system, ".SF NS Text", "Helvetica Neue", "Lucida Grande";
$font-size-bigger: 16pt;
$font-size-big: 15pt;
$font-size-normal: 13pt;
$font-size-medium: 12pt;
$font-size-small: 11pt;
$font-size-extra-small: 10pt;
$font-size-qslider-groove: 6pt;
$font-size-qslider-handle: 5pt;
// Import base theme CSS
@import 'Imports/Base Theme';
// OSX specific CSS
QToolBar
{
background-color:transparent;
border: 0px;
spacing:0;
}
QToolButton:hover
{
background-color:transparent;
}
QToolButton:pressed
{
background-color:transparent;
}
QToolButton:on
{
background-color:transparent;
}
QToolButton:on:pressed
{
background-color:transparent;
}
// Add or import your own custom QSS below