Bug 31559: Staff results page doesn't always use up full available screen width
[koha.git] / koha-tmpl / intranet-tmpl / prog / css / src / _mixins.scss
1 $font-main: Arial, Verdana, Helvetica, sans-serif;
2 $font-monospace: "Courier New", Courier, monospace;
3 $language-footer-min-height: 20px;
4 $table-border-color: #BCBCBC;
5 $table-header-background: #E8E8E8;
6 $table-odd-row: #F9F9F9;
7
8 $nav-menu-bullet: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5' viewBox='0 0 25 25'%3E%3Cpath fill='%23999' d='M9.66.95h4.56l9.21 11.85-9.21 10.53H9.66l5.08-10.53z'/%3E%3C/svg%3E");
9
10 @mixin default-button {
11     background-image: linear-gradient(to bottom, #FFF 0, #E0E0E0 100%);
12     border-color: #ADADAD #ADADAD #949494;
13     border-radius: 4px;
14     border-width: 1px;
15     color: #333333;
16     display: inline-block;
17     font-size: inherit;
18     line-height: 1.42857143;
19     padding: .3em .8em;
20     text-align: center;
21     text-shadow: 0 1px 0 #fff;
22     vertical-align: middle;
23     white-space: nowrap;
24
25     &:hover {
26         background: #E0E0E0 none;
27     }
28 }
29
30 @mixin disabled-button {
31     background: #EEE none;
32     border: 1px solid #C0C0C0;
33     color: #999;
34 }