1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- @import '../../app.less';
- .user-table {
- table {
- width: 100%;
- margin-bottom: 10px;
- line-height: 20px;
- .select {
- padding-left: 15px;
- text-align: left;
- .checkbox-item {
- margin-right: 10px;
- vertical-align: middle;
- }
- }
- th {
- padding: 0 20px;
- background: #ECEDEE;
- height: 60px;
- }
- th.select {
- padding-left: 40px;
- }
- td {
- padding: 20px;
- }
- }
- .empty {
- width: 100%;
- height: 100px;
- line-height: 100px;
- text-align: center;
- }
- .page {
- text-align: center;
- span {
- margin: 0 15px;
- display: inline-block;
- color: #303139;
- b {
- color: #4299FF;
- font-weight: 500;
- }
- }
- }
- }
- .user-table.border {
- table {
- border-bottom: 1px solid #ECEDEE;
- }
- th {
- border: 1px solid #fff;
- }
- }
- .user-table.small {
- table {
- th {
- height: 40px;
- }
- }
- }
- .user-table.even {
- tbody {
- overflow-y: auto;
- tr:nth-of-type(even) {
- background: #FBFBFB;
- }
- }
- }
- .user-table.dark {
- tr {
- background: #ECEDEE;
- }
- }
|