| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- // vendor
- @import 'vendor';
- // import variables
- @import 'variables';
- // override react-bootstrap-typeahead styles
- @import 'override-rbt';
- // crowi component
- @import 'admin';
- @import 'attachments';
- @import 'comment';
- @import 'comment_crowi-plus';
- @import 'create-page';
- @import 'layout';
- @import 'layout_crowi';
- @import 'layout_crowi_sidebar';
- @import 'layout_crowi-plus';
- @import 'on-edit';
- @import 'page_list';
- @import 'page';
- @import 'page_crowi-plus';
- @import 'search';
- @import 'shortcuts';
- @import 'user';
- @import 'user_crowi-plus';
- @import 'wiki';
- /*
- * for Guest User Mode
- */
- .dropdown-disabled {
- cursor: not-allowed;
- }
- .edit-button.edit-button-disabled {
- cursor: not-allowed;
- }
- /*
- // components
- // buttons
- $btn-google-color: rgb(204,89,71);
- .btn-google {
- @include button-variant(lighten($btn-google-color, 50%), $btn-google-color, darken($btn-google-color, 20%));
- }
- input.searching {
- background: #fff url(/images/loading_s.gif) right no-repeat;
- }
- .search-list {
- padding: 0;
- li {
- list-style: none;
- }
- .list-link {
- padding-bottom: 5px;
- a {
- display: block;
- word-break: break-all;
- font-weight: bold;
- text-decoration: none;
- span {
- font-weight: normal;
- }
- &:hover {
- background: #f0f0f0;
- color: #666;
- }
- }
- .search-description {
- font-size: .8em;
- color: #999;
- }
- }
- .next-link {
- a {
- display: block;
- text-align: center;
- }
- }
- }
- /*
- * Helper Classes
- */
- .picture {
- width: 24px;
- height: 24px;
- // size list
- &.picture-lg {
- width: 48px;
- height: 48px;
- }
- &.picture-md {
- width: 24px;
- height: 24px;
- }
- &.picture-sm {
- width: 18px;
- height: 18px;
- }
- &.picture-xs {
- width: 14px;
- height: 14px;
- }
- }
- // transplant from FontAwesome
- .icon-fw {
- width: 1.4em;
- display: inline-block;
- text-align: left;
- }
- .cmd-key.mac {
- &:after {
- content: '⌘';
- }
- }
- .cmd-key.win {
- &:after {
- content: 'Ctrl';
- }
- }
|