Skip to content

Commit

Permalink
Theme: Add group widget css file. See #1346
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Dec 30, 2016
1 parent 5d620db commit 3a3b7e9
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions css/widget.grouping.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/* Grouping widget css */
tr.group-header td {
background: #eee;
}
.group-name {
text-transform: uppercase;
font-weight: bold;
}
.group-count {
color: #999;
}
.group-hidden {
display: none !important;
}
.group-header, .group-header td {
user-select: none;
-moz-user-select: none;
}
/* collapsed arrow */
tr.group-header td i {
display: inline-block;
width: 0;
height: 0;
border-top: 4px solid transparent;
border-bottom: 4px solid #888;
border-right: 4px solid #888;
border-left: 4px solid transparent;
margin-right: 7px;
user-select: none;
-moz-user-select: none;
}
tr.group-header.collapsed td i {
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid #888;
border-right: 0;
margin-right: 10px;
}

0 comments on commit 3a3b7e9

Please sign in to comment.