123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- .ORYX_Editor {
- background-color: unset;
- }
- div.canvas-wrapper {
- background: -webkit-linear-gradient(top, transparent 20px, #a0cfff 21px), -webkit-linear-gradient(left, transparent 20px, #a0cfff 21px);
- background-size: 21px 21px;
- }
- div.propertySection {
- background-color: #ffffff;
- }
- .propertySection.collapsed .selected-item-title {
- border-top: 1px solid #a4acb9;
- }
- .selected-item-title {
- font-size: 16px;
- border-top: 1px solid #a4acb9;
- }
- .selected-item-body > div {
- overflow: hidden;
- margin: 20px 20px;
- }
- button.btn, a.btn {
- background-color: #409EFF;
- color: #ffffff;
- border-color: #ffffff;
- font-size: 15px;
- }
- .editor-toolbar .btn.btn-inverse.disabled, .editor-toolbar .btn.btn-inverse[disabled], .editor-toolbar .btn.btn-inverse[disabled]:active, .editor-toolbar .btn.btn-inverse[disabled]:hover {
- background-color: #a0cfff;
- border-color: #a0cfff;
- }
- .editor-toolbar .btn.btn-inverse.separator {
- background: transparent;
- padding: 0px 5px 0px 5px;
- width: 1px;
- min-width: 1px;
- }
- .btn:hover, .btn.active, .btn:focus {
- background-color: #8cc5ff;
- border-color: #ffffff;
- color: #ffffff;
- }
- .subheader {
- background-color: #FFFFFF;
- min-height: 60px;
- }
- .subheader >div>.pull-right {
- margin-top: 12px;
- margin-right: 10px;
- }
- .editor-toolbar .btn.btn-inverse {
- font-size: 15px;
- height: 30px;
- min-width: 30px;
- padding: 0px 6px 0px 6px;
- }
- .editor-toolbar {
- padding-left: 15px;
- padding-top: 2px;
- }
- .stencil-item {
- cursor: pointer;
- margin: 10px;
- min-width: 120px;
- text-align: center;
- background-color: #ecf5ff;
- display: inline-block;
- height: 32px;
- padding: 0 10px;
- line-height: 30px;
- font-size: 14px;
- color: #409eff;
- border: 1px solid #d9ecff;
- border-radius: 4px;
- box-sizing: border-box;
- white-space: nowrap;
- }
- .stencil-group > li {
- list-style: none;
- list-style-position: outside;
- margin: 0px 0px 10px 10px;
- background-color: #ffffff;
- font-family: Arial, Regular;
- font-size: 16px;
- color: #323437;
- }
- .stencil-group > li img {
- margin-top: -3px;
- margin-right: 2px;
- }
- .modal .modal-header {
- position: relative;
- background-color: #ffffff;
- height: 45px;
- border-bottom: 1px solid #a4acb9;
- padding: 12px 15px;
- min-height: unset;
- }
- .modal-header h3 {
- font-size: 15px;
- font-weight: bold;
- margin-bottom: 10px;
- position: absolute;
- top: -6px;
- }
- .modal-header h2 {
- font-size: 15px;
- font-weight: bold;
- margin-bottom: 10px;
- position: absolute;
- top: -6px;
- }
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 6px;
- background: hsla(0, 0%, 53%, .4);
- }
- ::-webkit-scrollbar-track {
- background: hsla(0, 0%, 53%, .1)
- }
- .page-list {
- overflow: hidden;
- }
- .page-list .pagination {
- margin: 0 0 10px 0;
- float: left;
- }
- .page-list .pagination span {
- cursor: pointer;
- }
- .page-list .pagination .separate span {
- cursor: default;
- border-top: none;
- border-bottom: none;
- }
- .page-list .pagination .separate span:hover {
- background: none;
- }
- .page-list .page-total {
- float: left;
- margin: 2px 0 2px 11px;
- }
- .page-list .page-total input, .page-list .page-total select {
- height: 26px;
- border: 1px solid #ddd;
- }
- .page-list .page-total input {
- width: 40px;
- padding-left: 3px;
- }
- .page-list .page-total select {
- width: 50px;
- }
- .no-items {
- text-align: center;
- }
- .modal-body {
- position: relative;
- padding: 10px 20px 0 20px;
- }
- .modal-footer {
- margin-top: 0px;
- }
- .property-row > span {
- display: block;
- float: left;
- margin: 2px 2%;
- padding: 0;
- min-height: 25px;
- line-height: 35px;
- }
- .property-row span.value {
- cursor: pointer;
- width: 46%;
- padding: 0;
- margin: 0;
- background-color: #ecf5ff;
- display: inline-block;
- height: 32px;
- padding: 0 10px;
- margin: 5px 0;
- line-height: 30px;
- font-size: 12px;
- color: #409eff;
- border: 1px solid #d9ecff;
- border-radius: 4px;
- box-sizing: border-box;
- white-space: nowrap;
- }
- .selected-item-body .property-row:hover {
- background: rgb(217, 236, 255);
- border-radius: 4px;
- }
- .editor-icon-close:before {
- font-weight: bold;
- content: "\2013";
- }
|