blob: 1a8710e9a7781794e03c37cdf70863d73f737199 [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;
Tal Gitelman51d50f02017-12-10 18:55:03 +020073 max-width: 350px;
74}
75
76.link-qtip{
77 .line{
78 margin-bottom: 5px;
79 }
80 .req-cap-label{
81 font-family: @font-opensans-regular;
82 }
83 .link-tooltip-arrow{
84 margin-right: 5px;
85 }
Michael Landoed64b5e2017-06-09 03:19:04 +030086}
87
88.tooltip-custom {
89 background-color: rgba(80, 99, 113, 0.9);
90 z-index: 1100;
91 -webkit-border-radius: 2px;
92 -moz-border-radius: 2px;
93 border-radius: 2px;
94 max-width: 280px;
95 text-align: center;
96 word-break: normal;
97 word-wrap: break-word;
98 padding-right: 10px;
99 padding-left: 10px;
100}
101
102._720kb-tooltip-caret:before
103 {
104 border: 6px solid rgba(80, 99, 113, 0.9);
105
106 }
107
108.tooltip-rightside{
109 right: 2px;
110 left: initial !important;
111
112 ._720kb-tooltip-caret:before{
113 right: 21px;
114 left: initial;
115 }
116}
117
118.tab-tooltip{
119 max-width: 220px;
120 white-space: nowrap;
121}
122.break-word-tooltip{
123 word-break: break-all;
124 margin-right: 2px;
125}
126
127.icon-tooltip{
128 margin-left: 12px;
129 right: initial !important;
130
131 ._720kb-tooltip-caret:before{
132 left: 44px;
133 right: initial;
134 }
135}
136
137.uib-custom-tooltip {
138 z-index: 999999;
139
140 .tooltip-inner {
141 background-color: rgba(80, 99, 113, 0.9);
142 padding: 5px 10px 5px 10px;
143 border-radius: 2px;
144 }
145}
146.tooltip {
147 &.bottom .tooltip-arrow {
148
149 margin-left: -6px !important;
150 border-width: 0 6px 6px !important;
151 border-bottom-color: rgba(80, 99, 113, 0.9) !important;
152 }
153 /* &.right {
154 white-space: nowrap;
155 max-width: none;
156 .tooltip-arrow {
157 border-right-color: rgba(80, 99, 113, 0.9);
158 }
159 }
160 &.left {
161 white-space:nowrap;
162 max-width:none;
163 .tooltip-arrow {
164 border-left-color: rgba(80, 99, 113, 0.9);
165 }
166 }*/
167}