Skip to content

Commit ac8a430

Browse files
committed
Data controls are now shown only on hover and active state
1 parent e7935d3 commit ac8a430

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

web/css/main.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,3 +1294,23 @@ label:active {
12941294
.show-passwords-enabled-action {
12951295
opacity: 1;
12961296
}
1297+
1298+
1299+
.data-controls {
1300+
/*display: none;*/
1301+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
1302+
filter: alpha(opacity=0);
1303+
-moz-opacity: 0;
1304+
-khtml-opacity: 0;
1305+
opacity: 0;
1306+
}
1307+
1308+
.data-row:hover .data-controls,
1309+
.selected .data-controls {
1310+
/*display: block;*/
1311+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
1312+
filter: alpha(opacity=100);
1313+
-moz-opacity: 1;
1314+
-khtml-opacity: 1;
1315+
opacity: 1;
1316+
}

0 commit comments

Comments
 (0)