_base.scss
ASCII text
1
/* Copyright 2009, 2015 Red Hat, Inc.
2
*
3
* Portions adapted from Mx's data/style/default.css
4
* Copyright 2009 Intel Corporation
5
*
6
* This program is free software; you can redistribute it and/or modify it
7
* under the terms and conditions of the GNU Lesser General Public License,
8
* version 2.1, as published by the Free Software Foundation.
9
*
10
* This program is distributed in the hope it will be useful, but WITHOUT ANY
11
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
13
* more details.
14
*
15
* You should have received a copy of the GNU Lesser General Public License
16
* along with this program; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
*/
19
20
// Stage
21
stage {
22
color: $on-surface;
23
24
@if $version >= 3.36 {
25
font-size: 1em;
26
} @else {
27
@include type(body2);
28
font-family: $font-family;
29
}
30
}
31
32
// Links
33
.shell-link {
34
transition-duration: $duration;
35
border-radius: $corner-radius;
36
color: $primary;
37
38
&:hover {
39
background-color: overlay("hover", $primary);
40
color: $primary;
41
}
42
43
&:active {
44
transition-duration: $duration-ripple;
45
background-color: overlay("pressed", $primary);
46
color: $primary;
47
}
48
}
49
50
// Outline for low res icons
51
.lowres-icon {
52
icon-shadow: none;
53
}
54
55
// Dropshadow for large icons
56
.icon-dropshadow {
57
icon-shadow: none;
58
}
59