Fix document selector styling in Safari
This commit is contained in:
parent
db63f73c9e
commit
9f8cd51875
|
@ -537,6 +537,9 @@ svg a:active, svg a:hover {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: top;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pick-document-item > div {
|
.pick-document-item > div {
|
||||||
|
@ -562,12 +565,16 @@ svg a:active, svg a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.pick-document-item:hover > div {
|
.pick-document-item:hover > div {
|
||||||
border-color: #FFCC00;
|
border-color: #FFCC00 !important;
|
||||||
background: #FFFFDD;
|
background: #FFFFDD;
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pick-document-item.new {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.pick-document-item.new > div:before {
|
.pick-document-item.new > div:before {
|
||||||
content: '+';
|
content: '+';
|
||||||
line-height: 170px;
|
line-height: 170px;
|
||||||
|
|
Loading…
Reference in New Issue