style.n2less
956 Bytes
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
(~'div#@{sliderid}') {
.nextend-arrow-grow {
cursor: pointer;
z-index: 10;
position: relative;
height: 48px;
width: 48px;
overflow: hidden;
transition: backgroundColor 0.4s, opacity 0.4s;
}
.nextend-arrow-grow .nextend-arrow-arrow {
width: 48px;
height: 100%;
background-repeat: no-repeat;
/*background-size: 48px auto;*/
background-position: center center;
}
.nextend-arrow-grow.nextend-arrow-next .nextend-arrow-arrow {
float: right;
}
.nextend-arrow-grow .nextend-arrow-title {
position: absolute;
left: 48px;
top: auto;
white-space: nowrap;
line-height: 48px !important;
padding: 0 10px;
}
html[dir="rtl"] & .nextend-arrow-grow.nextend-arrow-previous .nextend-arrow-title{
right: 48px;
left: auto;
}
.nextend-arrow-grow.nextend-arrow-next .nextend-arrow-title {
left: auto;
right: 48px;
}
}