blob: f4c618e2dcaefc8bd0af821af8bacee7e1f307e7 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001// ---------------------------------------------------------------------------------------------------
2// tooltips
3// ---------------------------------------------------------------------------------------------------
4div.tooltips {
5 position: relative;
6 display: inline;
7 float: right;
8 z-index: 1;
9 top: 30px;
10 left: 85px;
11
12 span {
13 .bg_s;
14 position: absolute;
15 width: 230px;
16 color: @color_c;
17 height: 30px;
18 line-height: 30px;
19 text-align: center;
20 border-radius: 6px;
21 visibility: hidden;
22
23 &:after {
24 .arrow(8px, @color_s);
25 }
26 }
27}
28
29// ---------------------------------------------------------------------------------------------------
30// Qtip
31// ---------------------------------------------------------------------------------------------------
32.qtip-custom {
33 -moz-border-radius: 2px;
34 -webkit-border-radius: 2px;
35 border-radius: 2px;
36 background-color: rgb(80,99,113);
37 border-color:rgb(80,99,113);
38 color:white;
39 font-size:14px;
40
41}
42
43
44.tooltip-custom {
45 background-color: rgba(80, 99, 113, 0.9);
46 z-index: 1100;
47 -webkit-border-radius: 2px;
48 -moz-border-radius: 2px;
49 border-radius: 2px;
50 max-width: 280px;
51 text-align: center;
52 word-break: normal;
53 word-wrap: break-word;
54 padding-right: 10px;
55 padding-left: 10px;
56}
57
58._720kb-tooltip-caret:before
59 {
60 border: 6px solid rgba(80, 99, 113, 0.9);
61
62 }
63
64.tooltip-rightside{
65 right: 2px;
66 left: initial !important;
67
68 ._720kb-tooltip-caret:before{
69 right: 21px;
70 left: initial;
71 }
72}
73
74.tab-tooltip{
75 max-width: 220px;
76 white-space: nowrap;
77}
78.break-word-tooltip{
79 word-break: break-all;
80 margin-right: 2px;
81}
82
83.icon-tooltip{
84 margin-left: 12px;
85 right: initial !important;
86
87 ._720kb-tooltip-caret:before{
88 left: 44px;
89 right: initial;
90 }
91}
92
93.uib-custom-tooltip {
94 z-index: 999999;
95
96 .tooltip-inner {
97 background-color: rgba(80, 99, 113, 0.9);
98 padding: 5px 10px 5px 10px;
99 border-radius: 2px;
100 }
101}
102.tooltip {
103 &.bottom .tooltip-arrow {
104
105 margin-left: -6px !important;
106 border-width: 0 6px 6px !important;
107 border-bottom-color: rgba(80, 99, 113, 0.9) !important;
108 }
109}
110