123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- /* Flex-Objects Admin Styles */
- #types {
- padding: 3rem;
- .card-item {
- max-width: 100%;
- p {
- margin: 1rem 0 0;
- }
- }
- }
- #directory {
- .no-entries {
- padding: 3rem;
- }
- .search-wrapper {
- margin: .5rem 1rem;
- }
- #pager .selectize-control {
- vertical-align: middle;
- display: inline-block;
- }
- .tablesorter-filter.disabled {
- display: none;
- }
- .edit-action {
- float: left;
- }
- .delete-action {
- float: right;
- }
- table {
- display: table;
- }
- thead {
- display: table-header-group;
- }
- tbody {
- display: table-row-group;
- }
- tr {
- display: table-row;
- flex: none;
- }
- td, th {
- display: table-cell;
- flex: none;
- &:focus {
- outline: 0 !important;
- }
- }
- td {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- td:last-child {
- text-align: right;
- white-space: nowrap;
- a {
- float: none;
- display: inline-block;
- padding-left: 5px;
- }
- }
- .tablesorter .filtered {
- display: none;
- }
- #pager {
- margin: 50px 0;
- text-align: center;
- .pagedisplay {
- padding: 0 10px;
- }
- .button {
- border: 0;
- }
- input, select {
- display: inline-block;
- width: auto;
- }
- select {
- vertical-align: middle;
- }
- }
- .flex-list-pagination {
- margin: 1rem 0 -1rem;
- padding: .5rem 1rem;
- display: flex;
- align-items: center;
- .vuetable-pagination-info, .flex-objects-pagination {
- flex: 1;
- }
- .flex-objects-pagination {
- text-align: right;
- -webkit-user-select: none;
- -moz-user-select: none;
- -khtml-user-select: none;
- -ms-user-select: none;
- .button {
- border-radius: 4px;
- background: transparent;
- &.disabled {
- &:active {
- margin: 0;
- }
- }
- }
- }
- }
- }
- /* FILTERS */
- // form .checkboxes input[type=checkbox]:checked+label:before
- #pages-filters {
- .checkboxes {
- -webkit-touch-callout: none; /* iOS Safari */
- -webkit-user-select: none; /* Safari */
- -khtml-user-select: none; /* Konqueror HTML */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* Internet Explorer/Edge */
- user-select: none;
- &.status-indeterminate {
- input[type="checkbox"] + label:before {
- content: "\f00d";
- font-family: "FontAwesome", sans-serif;
- font-size: 1.2rem;
- line-height: 1;
- text-align: center;
- }
- }
- }
- }
- /** Defaults **/
- /* Admin Styles */
- #directory .search-wrapper input, #directory .search-wrapper select {
- color: #646e7c;
- border: 1px solid #e6e6e6;
- background-color: #fcfcfc;
- }
- #directory .search-wrapper input::-webkit-input-placeholder, #directory .search-wrapper select::-webkit-input-placeholder {
- color: #a7afb8;
- }
- #directory .search-wrapper input::-moz-placeholder, #directory .search-wrapper select::-moz-placeholder {
- color: #a7afb8;
- }
- #directory .search-wrapper input:-moz-placeholder, #directory .search-wrapper select:-moz-placeholder {
- color: #a7afb8;
- }
- #directory .search-wrapper input:-ms-input-placeholder, #directory .search-wrapper select:-ms-input-placeholder {
- color: #a7afb8;
- }
- #directory .edit-action {
- color: #0090D9 !important;
- }
- #directory .delete-action {
- color: #F45857 !important;
- }
- #directory thead tr {
- background: #fafafa;
- }
- #directory tbody tr:nth-child(even) {
- background: white;
- }
- #directory i.published {
- color: #27AE60;
- }
- #directory i.unpublished {
- color: #E74C3C;
- }
- #directory .flex-list-pagination {
- background: #fcfcfc;
- border-top: 1px solid #f2f2f2;
- }
- #directory .flex-list-pagination .flex-objects-pagination .button {
- color: #414147;
- }
- #directory .flex-list-pagination .flex-objects-pagination .button.active {
- color: #ffffff;
- background: #0090D9;
- }
- #directory .flex-list-pagination .flex-objects-pagination .button.disabled {
- color: #99a2ad;
- }
|