blob: 4528aea5d25f9d97eea82649bbbfa6bc915ef980 [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001// ---------------------------------------------------------------------------------------------------
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// Tooltip
31// ---------------------------------------------------------------------------------------------------
32.w-sdc-canvas-tooltip{
33
34 position: absolute;
35 z-index: 100;
36
37 .w-sdc-custom-tooltip {
38 .c_1;
39 position:relative;
40 color: white;
41 padding:10px;
42 height: 25px;
43 min-width: 100px;
44 background-color: rgba(80, 99, 113, 0.9);
45 border-radius: 2px;
46 line-height: 2px;
47 text-align: center;
48
49 .w-sdc-tooltip-arrow {
50 position: absolute;
51 bottom:25px;
52 right:20px;
53 width:0;height:0;
54 border-left: 5px solid transparent;
55 border-right: 5px solid transparent;
56 border-bottom: 5px solid rgba(80, 99, 113, 0.9);
57 border-top: transparent;
58 border-width:7px;
59 border-style:solid;
60 }
61
62 }
63}
64
65.qtip-custom {
66 -moz-border-radius: 2px;
67 -webkit-border-radius: 2px;
68 border-radius: 2px;
69 background-color: rgb(80, 99, 113);
70 border-color:rgb(80, 99, 113);
71 color: white;
72 font-size:13px;
73}
74
75.tooltip-custom {
76 background-color: rgba(80, 99, 113, 0.9);
77 z-index: 1100;
78 -webkit-border-radius: 2px;
79 -moz-border-radius: 2px;
80 border-radius: 2px;
81 max-width: 280px;
82 text-align: center;
83 word-break: normal;
84 word-wrap: break-word;
85 padding-right: 10px;
86 padding-left: 10px;
87}
88
89._720kb-tooltip-caret:before
90 {
91 border: 6px solid rgba(80, 99, 113, 0.9);
92
93 }
94
95.tooltip-rightside{
96 right: 2px;
97 left: initial !important;
98
99 ._720kb-tooltip-caret:before{
100 right: 21px;
101 left: initial;
102 }
103}
104
105.tab-tooltip{
106 max-width: 220px;
107 white-space: nowrap;
108}
109.break-word-tooltip{
110 word-break: break-all;
111 margin-right: 2px;
112}
113
114.icon-tooltip{
115 margin-left: 12px;
116 right: initial !important;
117
118 ._720kb-tooltip-caret:before{
119 left: 44px;
120 right: initial;
121 }
122}
123
124.uib-custom-tooltip {
125 z-index: 999999;
126
127 .tooltip-inner {
128 background-color: rgba(80, 99, 113, 0.9);
129 padding: 5px 10px 5px 10px;
130 border-radius: 2px;
131 }
132}
133.tooltip {
134 &.bottom .tooltip-arrow {
135
136 margin-left: -6px !important;
137 border-width: 0 6px 6px !important;
138 border-bottom-color: rgba(80, 99, 113, 0.9) !important;
139 }
140 /* &.right {
141 white-space: nowrap;
142 max-width: none;
143 .tooltip-arrow {
144 border-right-color: rgba(80, 99, 113, 0.9);
145 }
146 }
147 &.left {
148 white-space:nowrap;
149 max-width:none;
150 .tooltip-arrow {
151 border-left-color: rgba(80, 99, 113, 0.9);
152 }
153 }*/
154}