123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- @import "globals";
- .content {
- background-color: $background-color;
- }
- .dashboard #content {
- width: 500px;
- }
- .small {
- font-size: 12px;
- }
- .changeform-object-tools {
- text-align: right;
- }
- ul.object-tools {
- @extend .clear-list;
- margin-bottom: 20px !important;
- li {
- margin-top: 10px;
- text-align: right;
- &:first-child {
- margin-top: 0;
- }
- a {
- display: inline-block;
- background-color: $button-background-color;
- padding: 8px;
- border-radius: 4px;
- &.addlink:before {
- @include font-icon;
- color: $button-text-color;
- font-size: 13px;
- content: $icon-add;
- }
- &, &:visited, &:hover {
- color: $button-text-color;
- }
- &:hover {
- background-color: $button-hover-background-color;
- color: $button-hover-text-color;
- &.addlink:before {
- color: $button-hover-text-color;
- }
- }
- &:active {
- background-color: $button-active-background-color;
- color: $button-active-text-color;
- &.addlink:before {
- color: $button-active-text-color;
- }
- }
- }
- }
- &.horizontal {
- line-height: 40px;
- li {
- display: inline;
- margin-top: 0;
- line-height: normal;
- }
- }
- }
- .content-sidebar {
- float: right;
- width: 24em;
- margin: 0 20px;
- }
- .dashboard .module table td a {
- display: inline !important;
- }
- .dialog-confirm {
- display: none;
- }
- .cleared {
- clear: both;
- }
- .loading-indicator {
- font-size: 32px;
- color: $button-hover-background-color;
- -webkit-animation: spin 4s linear infinite;
- -moz-animation: spin 4s linear infinite;
- animation: spin 4s linear infinite;
- &-wrapper {
- text-align: center;
- padding: 40px 0;
- }
- }
- @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
- @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
- @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
- img[src$="admin/img/icon-yes.gif"], img[src$="admin/img/icon-no.gif"], img[src$="admin/img/icon-unknown.gif"] {
- @include font-icon;
- content: "";
- font-weight: bold;
- }
- img[src$="admin/img/icon-yes.gif"]:before {
- content: $icon-tick;
- color: $success-text-color;
- }
- img[src$="admin/img/icon-no.gif"]:before {
- content: $icon-cross;
- color: $warning-text-color;
- }
- img[src$="admin/img/icon-unknown.gif"]:before {
- content: $icon-question;
- }
|