123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // Tables
- // --------------------------------------------------
- // Shared table styles
- .panel.panel-table {
- border: none;
- border-radius: @border-radius-base;
- .shadow-2dp();
- &>table {
- thead tr th {
- border-bottom-width: 1px;
- font-size: @font-size-small;
- }
- &, tr, td {
- background: none;
- }
- tr:last-child td {
- border-bottom: none;
- }
- &.vertically-aligned {
- thead, tbody {
- & tr>* {
- vertical-align: middle;
- }
- }
- }
- }
- }
- // Users table
- .panel.panel-table.users-table {
- &>table {
- tbody tr {
- td {
- font-size: @font-size-large;
- font-weight: @weight-light;
- }
- .col-avatar {
- width: 1%;
- img {
- border-radius: @avatar-radius;
- // Make avatar less dominating on larger displays
- @media (min-width: @screen-md-min) {
- border-radius: @avatar-radius-small;
- padding-right: 0px;
- width: 32px;
- height: 32px;
- }
- }
- }
- .col-username {
- a, a:link, a:visited, a:focus, a:hover {
- color: @site-link-active-color;
- font-weight: normal;
- }
- p {
- margin: 0px;
- font-size: @font-size-small;
- }
- }
- }
- }
- }
|