-
Notifications
You must be signed in to change notification settings - Fork 753
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Theme: Add group widget css file. See #1346
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |