|
|
@@ -34,6 +34,10 @@ a {
|
|
|
.f16 {
|
|
|
font-size: 16px !important;
|
|
|
}
|
|
|
+
|
|
|
+[ng-click] {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
/*inverse*/
|
|
|
.text-default {
|
|
|
color: #56a022;
|
|
|
@@ -864,4 +868,46 @@ a {
|
|
|
#footer .list-inline>li:not(:last-child):after {
|
|
|
margin-left: 15px;
|
|
|
content: "|"
|
|
|
+}
|
|
|
+/*table*/
|
|
|
+.table thead th {
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
|
|
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
|
|
|
+ to(#e6e6e6));
|
|
|
+ background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
|
|
+ background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
|
|
+ background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
|
|
+ background-repeat: repeat-x;
|
|
|
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
|
|
|
+ endColorstr='#ffe6e6e6', GradientType=0);
|
|
|
+}
|
|
|
+
|
|
|
+.ng-table-filters>th {
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.ng-table th.filter .input-filter {
|
|
|
+ border: none;
|
|
|
+ -webkit-border-radius: 0;
|
|
|
+ -moz-border-radius: 0;
|
|
|
+ border-radius: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.table-striped tbody>tr:hover,.table-striped tbody>tr:nth-child(odd):hover>td
|
|
|
+ {
|
|
|
+ background-color: rgba(141, 192, 219, 0.25);
|
|
|
+}
|
|
|
+
|
|
|
+.ng-table th.sortable.sort-desc,.ng-table th.sortable.sort-asc {
|
|
|
+ background-image: -moz-linear-gradient(top, #ffffff, rgba(141, 192, 219, 0.25));
|
|
|
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
|
|
|
+ to(rgba(141, 192, 219, 0.25)));
|
|
|
+ background-image: -webkit-linear-gradient(top, #ffffff, rgba(141, 192, 219, 0.25));
|
|
|
+ background-image: -o-linear-gradient(top, #ffffff, rgba(141, 192, 219, 0.25));
|
|
|
+ background-image: linear-gradient(to bottom, #ffffff, rgba(141, 192, 219, 0.25));
|
|
|
+}
|
|
|
+
|
|
|
+.table .text-right>span {
|
|
|
+ float: right;
|
|
|
}
|