87ea118ef3edcb702308d499a08a42a8ab5c3d58
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / css / src / _mixins.scss
1 $font-monospace: "Courier New", Courier, monospace;
2
3 $language-footer-min-height: 20px;
4 $table-border-color: #BCBCBC;
5 $table-header-background: #E8E8E8;
6 $table-odd-row: #f3f4f4;
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-color: transparent;
12     border-color: #ADADAD #ADADAD #949494;
13     border-radius: 4px;
14     border: 1px solid #696969;
15     color: #000;
16     display: inline-block;
17     font-size: inherit;
18     line-height: 1.42857143;
19     padding: .5em 1em;
20     text-align: center;
21     vertical-align: middle;
22     white-space: nowrap;
23
24     &:active {
25         box-shadow: inset 0 0 2px #2222227F;
26     }
27 }
28
29 @mixin disabled-button {
30     background: #EEE none;
31     border: 1px solid #C0C0C0;
32 }
33
34 @mixin card {
35     background-color: white;
36     box-shadow: 0 0 4px 1px #00000030;
37 }