-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathhotgraphicPopup.less
46 lines (39 loc) · 1.06 KB
/
hotgraphicPopup.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.hotgraphic-popup {
// Increase toolbar padding top so the browser outline of the
// item title is not hidden by toolbar
// --------------------------------------------------
&__inner {
padding-top: (@icon-size + (@icon-padding * 2)) + (@item-padding / 2);
}
&__controls,
&__close {
margin: @btn-margin / 2;
padding: @btn-padding / 2;
background-color: @notify-icon;
color: @notify-icon-inverted;
border-radius: 50%;
.no-touch &:not(.is-disabled):not(.is-locked):hover {
background-color: @notify-icon-hover;
color: @notify-icon-inverted-hover;
.transition(background-color @duration ease-in, color @duration ease-in;);
}
}
&__item-title {
margin-bottom: @notify-title-margin;
.notify-title;
}
&__item-body {
margin-bottom: @notify-body-margin;
}
&__item-body a {
.link-text;
color: @notify-link;
.no-touch &:hover {
color: @notify-link-hover;
.transition(color @duration ease-in);
}
}
.hotgraphic.has-img-zoom &__item-image-container {
.img-zoom();
}
}