You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.1 KiB
67 lines
1.1 KiB
|
|
/*******************************
|
|
Data Display Grid
|
|
*******************************/
|
|
|
|
.ui.data-grid {
|
|
width: 100%;
|
|
font-size: 12px;
|
|
color: #555555;
|
|
}
|
|
.ui.data-grid.hide {
|
|
display: none;
|
|
}
|
|
|
|
.ui.data-grid thead {
|
|
|
|
}
|
|
.ui.data-grid thead th {
|
|
|
|
}
|
|
.ui.data-grid tbody tr {
|
|
border-top: 1px solid #D9D9D9;
|
|
}
|
|
.ui.data-grid tbody tr:first-child {
|
|
border-top: none;
|
|
}
|
|
.ui.data-grid tbody td {
|
|
padding: 10px 14px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
/* Special Row Types */
|
|
.ui.data-grid tbody td.who {
|
|
width: 240px;
|
|
}
|
|
.ui.data-grid tbody td.who i {
|
|
float: left;
|
|
width: 35px;
|
|
height: 35px;
|
|
background: #EFEFEF url(../images/placeholder-tiny.png) no-repeat center center;
|
|
}
|
|
.ui.data-grid tbody td.who img {
|
|
width: 35px;
|
|
}
|
|
.ui.data-grid tbody td.who hgroup {
|
|
display: block;
|
|
margin-left: 50px;
|
|
}
|
|
.ui.data-grid tbody td.who hgroup h2 {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
.ui.data-grid tbody td.who hgroup h3 {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ui.data-grid tbody td.action {
|
|
width: 120px;
|
|
text-align: right;
|
|
}
|
|
|
|
|
|
/* data-grid Hover Style */
|
|
.ui.data-grid tbody tr.hover {
|
|
background-color: #F4F4F4;
|
|
}
|