Bug 30952: Fix lists display on patron detail page
[koha.git] / koha-tmpl / intranet-tmpl / prog / css / src / _toolbar.scss
1 #toolbar,
2 .btn-toolbar {
3     display: flex;
4     justify-content: flex-start;
5     flex-wrap: wrap;
6
7     background-color: #f3F4F4;
8     border: 0;
9     border-radius: 5px 5px 0 0;
10     margin: 0 -15px;
11
12     .dropdown-menu {
13         border-top-width: 1px;
14         font-size: 13px;
15     }
16
17     &.floating {
18         border-radius: 0;
19         margin-top: 0;
20         box-shadow: 0 3px 2px 0 rgba(0, 0, 0, .5);
21         z-index: 100;
22     }
23
24     a.addtocart {
25         display: block;
26     }
27
28     a.cartRemove {
29         padding: 6px 12px;
30         font-size: 12px;
31         display: none;
32     }
33
34     a.addtocart.incart {
35         display: none;
36     }
37
38     a.cartRemove.incart {
39         display: block;
40     }
41
42     .btn.btn-default {
43         font-weight: normal;
44         text-align: center;
45         white-space: nowrap;
46         vertical-align: middle;
47         touch-action: manipulation;
48         cursor: pointer;
49         background-image: none;
50         padding: 6px 12px;
51         box-shadow: none;
52         border-radius: 4px;
53         user-select: none;
54         font-size: 100%;
55         background-color: transparent;
56         border: 0;
57         display: inline-block;
58         color: #696969;
59
60         &:hover, &:focus {
61             text-decoration: none;
62             background-color: #DADADA;
63             color: #696969;
64             padding: 6px 12px;
65         }
66
67         &:active {
68             border: 0;
69         }
70     }
71 }