mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-14 10:37:39 -07:00
Data controls are now shown only on hover and active state
This commit is contained in:
parent
e7935d387f
commit
ac8a430ab8
1 changed files with 20 additions and 0 deletions
|
@ -1294,3 +1294,23 @@ label:active {
|
|||
.show-passwords-enabled-action {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
||||
.data-controls {
|
||||
/*display: none;*/
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
||||
filter: alpha(opacity=0);
|
||||
-moz-opacity: 0;
|
||||
-khtml-opacity: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.data-row:hover .data-controls,
|
||||
.selected .data-controls {
|
||||
/*display: block;*/
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
||||
filter: alpha(opacity=100);
|
||||
-moz-opacity: 1;
|
||||
-khtml-opacity: 1;
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue