123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- .cke_panel {
-
- visibility: visible;
- width: 120px;
- height: 100px;
- overflow: hidden;
- margin-top: 5px;
- background-color: #fff;
- border: 1px solid $gray;
- border-radius: $border-radius;
- }
- .cke_menu_panel {
- padding: 0;
- margin: 0;
- }
- .cke_combopanel {
- width: 150px;
- height: 178px;
- }
- .cke_panel_frame {
- width: 100%;
- height: 100%;
- font-size: 12px;
- overflow: auto;
- overflow-x: hidden;
- }
- .cke_panel_container {
- overflow-y: auto;
- overflow-x: hidden;
- }
- .cke_panel_list {
- list-style-type: none;
- margin: 3px;
- padding: 0;
- white-space: nowrap;
- }
- .cke_panel_listItem {
- margin: 0;
- padding-bottom: 1px;
- }
- .cke_panel_listItem a {
- padding: 3px 4px;
- display: block;
- border: 1px solid #fff;
- color: inherit !important;
- text-decoration: none;
- overflow: hidden;
- text-overflow: ellipsis;
- border-radius: 2px;
- &:hover, &:focus, &:active {
- background-color: $primary-lighter;
- }
- }
- * html .cke_panel_listItem a {
- width : 100%;
-
- color: #000;
- }
- *:first-child+html .cke_panel_listItem a {
-
- color: #000;
- }
- .cke_panel_listItem.cke_selected a {
- background-color: $primary-light;
- outline: none;
- }
- .cke_hc .cke_panel_listItem a {
- border-style: none;
- }
- .cke_hc .cke_panel_listItem a {
- &:hover, &:focus, &:active {
- border: 2px solid;
- padding: 1px 2px;
- }
- }
- .cke_panel_grouptitle {
- font-size: 11px;
- font-weight: bold;
- white-space: nowrap;
- margin: 0;
- padding: 6px 6px;
- color: #474747;
- border-bottom: 1px solid $gray;
- background: $gray-lighter;
- &:first-child {
- border-radius: $border-radius $border-radius 0 0;
- }
- }
- .cke_panel_listItem {
- p, h1, h2, h3, h4, h5, h6, pre {
- margin-top: 0px;
- margin-bottom: 0px;
- }
- }
|