| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- // import bootstrap variables
- @import "~bootstrap-sass/assets/stylesheets/bootstrap/variables";
- // import crowi variables
- @import 'variables';
- // agile-admin theme
- @import '../agile-admin/inverse/style';
- @import '../agile-admin/inverse/colors/default.scss';
- @import 'override-agileadmin';
- @import 'override-rbt';
- // crowi component
- @import 'admin';
- @import 'attachments';
- @import 'comment';
- @import 'comment_crowi-plus';
- @import 'create-page';
- @import 'crowi-sidebar';
- @import 'layout';
- @import 'layout_crowi';
- @import 'layout_crowi-plus';
- @import 'on-edit';
- @import 'page_list';
- @import 'page';
- @import 'page_crowi-plus';
- @import 'portal';
- @import 'search';
- @import 'shortcuts';
- @import 'user';
- @import 'user_crowi-plus';
- @import 'wiki';
- /*
- ul {
- padding-left: 18px;
- }
- .page-meta {
- margin-bottom: 0;
- }
- .help-block {
- font-size: .9em;
- }
- header nav ul img {
- vertical-align: middle;
- }
- footer, aside {
- h4:first-child, h3:first-child {
- margin-top: 0;
- }
- h4 {
- font-size: 1.1em;
- }
- }
- .form-element {
- margin-bottom: 1em;
- }
- footer {
- h4,
- h3 {
- margin-bottom: 0.5em;
- font-weight: normal;
- &:first-child {
- margin-top: 0;
- }
- }
- p {
- margin: 0.3em 0 0.5em 0;
- &:first-child {
- margin-top: 0;
- }
- }
- }
- */
- /*
- * 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: 16px;
- height: 16px;
- }
- &.picture-xs {
- width: 12px;
- height: 12px;
- }
- }
- // transplant from FontAwesome
- .icon-fw {
- width: 20px;
- display: inline-block;
- text-align: left;
- }
- .cmd-key.mac {
- &:after {
- content: '⌘';
- }
- }
- .cmd-key.win {
- &:after {
- content: 'Ctrl';
- }
- }
|