123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- /**
- * @file
- * Mediteran styles for Tables.
- */
- table {
- width: 100%;
- margin: 20px 0;
- }
- .responsive-enabled,
- .preview-section table,
- .views-table {
- display: flow-root;
- overflow-x: scroll;
- }
- @media screen and (min-width: 1025px) {
- form table,
- .responsive-enabled,
- .preview-section table,
- .views-table {
- display: table;
- overflow-x: auto;
- }
- }
- caption {
- text-align: left;
- /* LTR */
- }
- [dir="rtl"] caption {
- text-align: right;
- }
- th {
- text-align: left;
- /* LTR */
- padding: 10px 15px;
- }
- [dir="rtl"] th {
- text-align: right;
- }
- thead th {
- background: #f5f5f5;
- border: none;
- color: #909090;
- font-weight: 400;
- }
- thead th a {
- font-weight: 400;
- color: #0678be;
- }
- thead th a:hover {
- text-decoration: underline;
- }
- thead tr {
- border: none;
- }
- tr {
- border-bottom: 1px solid #e6e4df;
- }
- tbody tr:first-child {
- border-top: 1px solid #e6e4df;
- }
- tbody tr:hover,
- tbody tr:focus {
- background: #f7fcff;
- }
- tbody tr.color-warning:hover,
- tbody tr.color-warning:focus,
- .drag tbody tr:hover,
- .drag tbody tr:focus {
- background: #fdf8ed;
- }
- tbody tr.color-error:hover,
- tbody tr.color-error:focus {
- background: #fcf4f2;
- }
- table.no-highlight tr.selected td {
- background: transparent;
- }
- td,
- th {
- vertical-align: middle;
- }
- td {
- padding: 20px 15px;
- line-height: 1.6;
- text-align: left;
- /* LTR */
- }
- [dir="rtl"] td {
- text-align: right;
- }
- th>a {
- position: relative;
- display: block;
- }
- th.is-active>a {
- color: #004875;
- }
- thead th.is-active {
- background: #fff;
- border-bottom: 1px solid white;
- border-top: 1px solid #e6e4df;
- border-left: 1px solid #e6e4df;
- border-right: 1px solid #e6e4df;
- }
- th.is-active>a {
- color: #333;
- }
- th>a:hover,
- th>a:focus,
- th.is-active>a:hover,
- th.is-active>a:focus {
- color: #0678be;
- text-decoration: none;
- }
- td .item-list ul {
- margin: 0;
- }
- /* This is required to win over specificity of [dir="rtl"] .item-list ul */
- [dir="rtl"] td .item-list ul {
- margin: 0;
- }
- td.is-active {
- background: none;
- }
- td.views-field-node-bulk-form {
- width: 1px;
- min-width: 1px;
- }
- /* Force browsers to calculate the width of a 'select all' <th> element. */
- th.select-all {
- width: 1px;
- min-width: 1px;
- }
- @media screen and (min-width: 1024px) {
- th,
- td {
- width: auto;
- }
- table {
- display: table;
- overflow-x: auto;
- }
- }
- @media screen and (max-width: 768px) {
- th,
- td {
- min-width: 150px;
- }
- }
- /**
- * Captions.
- */
- .caption {
- margin-bottom: 1.2em;
- }
- /**
- * Responsive tables.
- */
- @media screen and (max-width: 640px) {
- th.priority-low,
- td.priority-low,
- th.priority-medium,
- td.priority-medium {
- display: none;
- }
- }
- @media screen and (max-width: 920px) {
- th.priority-low,
- td.priority-low {
- display: none;
- }
- }
- td.menu-label {
- font-weight: 700;
- }
- .tableresponsive-toggle {
- margin: 20px 0;
- font-size: 12px;
- }
- /* webform element plugin */
- .webform-element-plugin th,
- .webform-element-plugin td {
- min-width: 150px;
- vertical-align: top;
- }
- table.field-multiple-table tr.draggable td.field-multiple-drag {
- width: 10px;
- }
- table tr.draggable td div.form--inline {
- align-items: center;
- }
- /* entityqueue */
- .field--widget-entityqueue-dragtable table tr.draggable td div.form--inline > div {
- margin-right: auto;
- }
|