From 087bd1b14d5e1f45f60b1ffa64ca318c23b7c6ea Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 19:56:52 +0200 Subject: Adding debian version 2.0.0+dfsg-1. Signed-off-by: Daniel Baumann --- .../wyrm/sass/wyrm_addons/elements/_modal.sass | 67 +++ .../wyrm/sass/wyrm_addons/elements/_paginate.sass | 44 ++ .../wyrm/sass/wyrm_addons/elements/_stars.sass | 56 +++ .../wyrm/sass/wyrm_addons/elements/_tooltip.sass | 47 ++ .../sass/wyrm_addons/forms/_form_autocomplete.sass | 188 ++++++++ .../wyrm/sass/wyrm_addons/forms/_form_gallery.sass | 47 ++ .../wyrm/sass/wyrm_addons/forms/_form_tag.sass | 44 ++ .../wyrm/sass/wyrm_addons/forms/_form_upload.sass | 85 ++++ .../wyrm/sass/wyrm_addons/pygments/_pygments.sass | 59 +++ .../sass/wyrm_addons/pygments/_pygments_dark.sass | 129 +++++ .../sass/wyrm_addons/pygments/_pygments_light.sass | 146 ++++++ .../wyrm/sass/wyrm_addons/redactor/_figures.sass | 190 ++++++++ .../wyrm/sass/wyrm_addons/redactor/_redactor.sass | 526 +++++++++++++++++++++ 13 files changed, 1628 insertions(+) create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/elements/_modal.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/elements/_paginate.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/elements/_stars.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_autocomplete.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_gallery.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_tag.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_upload.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_dark.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_light.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_figures.sass create mode 100644 debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_redactor.sass (limited to 'debian/missing-sources/wyrm/sass/wyrm_addons') diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_modal.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_modal.sass new file mode 100644 index 0000000..5ea1e2a --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_modal.sass @@ -0,0 +1,67 @@ +.wy-modal-screen + position: fixed + width: 100% + height: 100% + background: rgba(0,0,0,.5) + top: 0 + left: 0 + z-index: $z-index-modal + +.wy-modal-close + @extend %icon + @extend .#{$icon-prefix}-#{$icon-close} + color: $text-color + cursor: pointer + position: absolute + right: $base-line-height + top: $base-line-height + font-size: 0 + &:before + font-size: 20px + &:hover + color: $red + +.wy-modal + position: fixed + width: 50% + top: 50% + left: 50% + margin-left: -25% + margin-top: -25% + background: $section-background-color + z-index: $z-index-modal + 1 + border: solid 1px $table-border-color + section + padding: 0 $gutter $gutter $gutter + header + font-weight: 500 + padding: $base-line-height + padding-top: $base-line-height / 2 + font-weight: bold + font-family: $custom-font-family + font-size: 150% + footer + background: $background-color + padding: $gutter + text-align: right + .btn + margin-left: 5px + +.wy-body-mask + position: fixed + width: 100% + height: 100% + background: rgba(0,0,0,.8) + display: none + z-index: $z-index-modal - 1 + top: 0 + &.on + display: block + ++media($mobile) + .wy-modal + width: 100% + margin: 0 + left: 0 + right: 0 + top: 0 diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_paginate.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_paginate.sass new file mode 100644 index 0000000..42a2af6 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_paginate.sass @@ -0,0 +1,44 @@ +// Pagination +// +// Pagination `/wyrm_addons/elements/_paginate.sass`. +// +// Markup: +// +// +// .wy-paginate-center - Centered +// +// Styleguide 11.0 + +.wy-paginate + margin-bottom: $base-line-height + list-style: none + li + list-style: none + display: inline-block + margin: 0 + a + display: inline-block + padding: $base-line-height / 4 $base-line-height / 2 + border: solid 1px $table-border-color + color: $text-color + line-height: 1 + font-size: 90% + a:hover + background: $table-border-color + li.active a + background: $gray-dark + border-color: $gray-dark + color: $white !important + li.dots a + border-color: transparent + &.wy-paginate-center + text-align: center diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_stars.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_stars.sass new file mode 100644 index 0000000..bf512b6 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_stars.sass @@ -0,0 +1,56 @@ +// Ratings +// +// Ratings using font icons. Located in `/wyrm_addons/elements/_stars.sass`. +// +// Markup: +// +// +// .wy-star-0 - 0 stars +// .wy-star-0dot5 - 0.5 stars +// .wy-star-1 - 1 stars +// .wy-star-1dot5 - 1.5 stars +// .wy-star-2 - 2 stars +// .wy-star-2dot5 - 2.5 stars +// .wy-star-3 - 3 stars +// .wy-star-3dot5 - 3.5 stars +// .wy-star-4 - 4 stars +// .wy-star-4dot5 - 4.5 stars +// .wy-star-5 - 5 stars +// +// Styleguide 10.0 + +.wy-star + display: inline-block + max-width: 100% + letter-spacing: 3px + color: $text-light + font-family: $icon-font-family + vertical-align: top + position: relative + &:before + content: "\f005\f005\f005\f005\f005" + &:after + position: absolute + top: 0 + left: 0 + color: $text-color + &.wy-star-0dot5:after + content: "\f089" + &.wy-star-1:after + content: "\f005" + &.wy-star-1dot5:after + content: "\f005\f089" + &.wy-star-2:after + content: "\f005\f005" + &.wy-star-2dot5:after + content: "\f005\f005\f089" + &.wy-star-3:after + content: "\f005\f005\f005" + &.wy-star-3dot5:after + content: "\f005\f005\f005\f089" + &.wy-star-4:after + content: "\f005\f005\f005\f005" + &.wy-star-4dot5:after + content: "\f005\f005\f005\f005\f089" + &.wy-star-5:after + content: "\f005\f005\f005\f005\f005" diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass new file mode 100644 index 0000000..11e4b94 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass @@ -0,0 +1,47 @@ +// Tooltips +// -------- + +.wy-tooltip + position: absolute + z-index: $z_index_tooltip + display: block + visibility: visible + padding: 5px + font-size: 11px + opacity: 0 + +transition(opacity 2.0s ease-in) + &.on + opacity: .8 + &.top + margin-top: -2px + &.right + margin-left: 2px + &.bottom + margin-top: 2px + &.left + margin-left: -2px + &.top .wy-tooltip-arrow + +arrow-top + &.left .wy-tooltip-arrow + +arrow-left + &.bottom .wy-tooltip-arrow + +arrow-bot + &.right .wy-tooltip-arrow + +arrow-right + +.wy-tooltip-inner + max-width: 200px + padding: $base-font-size / 2 + color: $white + text-align: center + text-decoration: none + background-color: $black + border-radius: 4px + +.wy-tooltip-arrow + position: absolute + width: 0 + height: 0 + + + diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_autocomplete.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_autocomplete.sass new file mode 100644 index 0000000..d7dccc7 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_autocomplete.sass @@ -0,0 +1,188 @@ +// Form - autocompleter +// +// Located in `wyrm_core/_autocompleter.sass`. Autocompleters traditionally have three states, empty, +// single item and multi-item addition. Examples for all three are shown below. +// +// Markup: +//
+// +//
+//
+//
+// +//
+//
+// Example help text +//
+//
+//
+// +//
+//
+// Network +//
+// User needs to close the above item before choosing a replacement. +//
+//
+//
+// +//
+//
+// Network +// Rollerball +// Being There +//
+// +//
+//
    +//
  • +// Network +//
  • +//
  • +// Rollerball +//
  • +//
  • +// Being There +//
  • +//
  • +// Add new entry +//
  • +//
+//
+//
+//
+// Infinite autocomplete. +//
+//
+// +// Styleguide 9 + +.wy-autocomplete-group + display: inline-block + position: relative + background: $input-background-color + +.wy-autocomplete-dropdown + position: absolute + top: 100% + left: 0 + float: left + min-width: 100% + background: $dropdown-color + z-index: $z-index-dropdown + border: solid 1px $dropdown-border-color + box-shadow: 0 5px 5px 0 rgba(0,0,0,.1) + ul + list-style: none !important + margin: 0 !important + li + line-height: 1.5 + padding: $base-font-size / 2 + cursor: pointer + list-style: none !important + margin: 0 !important + border-bottom: solid 1px $table-border-color + &:last-child + border-bottom: none + &.on, &:hover + background: $link-color + border-color: transparent + color: $white + &.add + background: lighten($green, 50%) + &:hover.add, &.add.on + background: $green + img + width: 16px + height: 16px + margin-right: $base-font-size / 2 + +.wy-tag-input-group + .wy-autocomplete-dropdown + margin-top: -4px + +// Form - Autocompleter, many items. +// +// For when there are lots of items in a tag group. +// +// Markup: +//
+// +//
+//
+//
    +//
  1. Network
  2. +//
  3. Rollerball
  4. +//
  5. The Godfather
  6. +//
  7. The Godfather Part II
  8. +//
  9. The Big Lebowski
  10. +//
  11. Fargo
  12. +//
  13. Bad Santa
  14. +//
+//
+// +// +//
+//
+//
+// +// Styleguide 9.2 + +.wy-tag-input-group.wy-tag-input-group-many + border: none + box-shadow: none + padding: 0 + display: block + background: transparent + .wy-autocomplete-group + display: inline-block + border: solid 1px $table-border-color + width: 50% + margin-bottom: $base-line-height / 4 + padding: 0 $base-line-height / 4 + label + margin-left: 0 + input + margin-bottom: 0 + .wy-spinner + float: right + margin-top: $base-line-height / 4 + margin-bottom: $base-line-height / 4 + +.wy-tag-input-group.wy-tag-input-group-many ol + margin-bottom: 0 + +.wy-tag-input-group.wy-tag-input-group-many ol li + cursor: move + margin-left: 0 + span + padding: $base-line-height / 4 $base-line-height / 2 + margin-bottom: $base-line-height / 4 + background: rgba(0,0,0,.1) + position: relative + +truncate(50%) + +transition(background .5s ease-in-out) + &.active span + background: rgba(0,0,0,.2) + + span:hover + .#{$icon-prefix}-#{$icon-remove} + opacity: 1 + span:before + color: $gray-light + margin-right: $base-line-height / 4 + + .#{$icon-prefix}-#{$icon-remove} + position: absolute + right: $base-line-height / 4 + top: $base-line-height / 4 + color: $red + opacity: 0 + +.wy-tag-input-group.wy-tag-input-group-many li + cursor: auto + ++media($mobile) + .wy-tag-input-group.wy-tag-input-group-many ol li span + width: 100% + diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_gallery.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_gallery.sass new file mode 100644 index 0000000..53c2624 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_gallery.sass @@ -0,0 +1,47 @@ +// Gallery management + +.wy-form-gallery-manage + margin-left: -$base-line-height / 2 + margin-right: -$base-line-height / 2 + li + float: left + padding: $base-line-height / 2 + width: 20% + cursor: pointer + +media($tablet) + width: 25% + +media($mobile) + width: 50% + &:active + cursor: move + li > a + padding: $base-line-height / 2 + background-color: #FFF + border: solid 1px $table-border-color + border-bottom: solid 3px $table-border-color + display: inline-block + +transition(all .1s ease-in) + &:active + border: solid 1px $input-border-color + border-top: solid 3px $input-border-color + img + width: 100% + +transition(all .05s ease-in) + +li.wy-form-gallery-edit + position: relative + color: $text-invert + padding: $base-line-height + width: 100% + display: block + background-color: $menu-background-color + border-radius: 4px + .arrow + position: absolute + display: block + top: -50px + left: 50% + margin-left: -25px + z-index: 500 + +triangle(50px, $menu-background-color, up) + diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_tag.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_tag.sass new file mode 100644 index 0000000..14dab83 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_tag.sass @@ -0,0 +1,44 @@ +// Tags + +.wy-tag-input-group + padding: 4px 4px 0px 4px + display: inline-block + border: 1px solid $input-border-color + font-size: 80% + font-family: $base-font-family + box-shadow: inset 0 1px 3px $input-shadow-color + background: $input-background-color + +transition(border .3s linear) + +font-smooth + .wy-tag + display: inline-block + background-color: rgba(0,0,0,.1) + padding: em(8px) em(10px) + border-radius: 2px + position: relative + margin-bottom: 4px + +transition(background-color .5s ease-in-out) + &.on + background-color: rgba(0,0,0,.2) + .wy-tag-remove + color: $red + &.active + background-color: rgba(0,0,0,.2) + .wy-tag-remove + @extend %icon + @extend .#{$icon-prefix}-#{$icon-close} + color: $gray-lighter + margin-left: 5px + &:hover + color: $red + // label is used here as an icon to the input, which is why normal label stuff is removed + label + margin-left: 5px + display: inline-block + margin-bottom: 0 + input + border: none + font-size: 100% + margin-bottom: 4px + box-shadow: none + diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_upload.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_upload.sass new file mode 100644 index 0000000..b266585 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/forms/_form_upload.sass @@ -0,0 +1,85 @@ +.wy-form-upload-container + vertical-align: middle + +.wy-form-upload + display: inline-block + cursor: pointer + color: $text-color + vertical-align: middle + +transition(border-color .1s ease-in) + +clearfix + +media($mobile) + width: 100% + .image-drop + display: none + .image-desktop + display: none + .image-loading + display: none + .image-drop .wy-form-upload-icon + color: $green + p + font-size: 90% + margin-bottom: $base-line-height / 4 + .wy-form-upload-image + display: inline-block + line-height: 150px + text-align: center + margin-right: $base-line-height / 2 + vertical-align: middle + .icon + font-size: 50px + line-height: 75px + img + max-width: 150px + max-height: 150px + .wy-form-upload-content + vertical-align: middle + display: inline-block + +media($mobile) + width: 100% + +.wy-form-upload.wy-form-upload-big + width: 100% + text-align: center + padding: $base-line-height * 3 + .wy-form-upload-content + float: none + +.wy-form-upload-url + padding: 18px 0px + vertical-align: middle + +.wy-form-upload.wy-form-upload-file + p + margin-bottom: 0 + .wy-form-upload-icon + display: inline-block + font-size: inherit + +.wy-form-upload.wy-form-upload-drop + background-color: lighten($green, 50%) + .image-drop + display: block + .image-desktop + display: none + .image-drag + display: none + +.wy-form-upload.wy-form-upload-loading + .image-drag + display: none + .image-desktop + display: none + .image-loading + display: block + .wy-input-prefix + display: none + p + margin-bottom: 0 + ++media($mobile) + .wy-form-upload + .wy-form-upload-image + margin-bottom: $base-line-height / 2 + diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments.sass new file mode 100644 index 0000000..34a0ecc --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments.sass @@ -0,0 +1,59 @@ +.codeblock-example + border: 1px solid $table-border-color + border-bottom: none + padding: $base-line-height + padding-top: $base-line-height * 2 + font-weight: 500 + background: $white + position: relative + &:after + content: "Example" + position: absolute + top: 0px + left: 0px + background: $purple + color: lighten(purple, 80%) + padding: $base-line-height / 4 $base-line-height / 2 + &.prettyprint-example-only + border: 1px solid $table-border-color + margin-bottom: $base-line-height + +.codeblock, div[class^='highlight'] + border: 1px solid $table-border-color + padding: 0px + overflow-x: auto + background: $white + // 1px hack otherwise border won't show. lame + margin: 1px 0 $base-line-height 0 + div[class^='highlight'] + border: none + background: none + margin: 0 +// Needs 100% width for line highlighting to work properly +div[class^='highlight'] td.code + width: 100% +.linenodiv pre + border-right: solid 1px lighten($table-border-color, 2%) + margin: 0 + padding: $base-line-height / 2 $base-line-height / 2 + font-family: $code-font-family + font-size: 12px + line-height: 1.5 + color: $text-lighter +div[class^='highlight'] pre + white-space: pre + margin: 0 + padding: $base-line-height / 2 $base-line-height / 2 + font-family: $code-font-family + font-size: 12px + line-height: 1.5 + display: block + overflow: auto + color: $text-color +pre.literal-block + @extend .codeblock + +@media print + .codeblock, div[class^='highlight'], div[class^='highlight'] pre + white-space: pre-wrap + diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_dark.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_dark.sass new file mode 100644 index 0000000..1406d9d --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_dark.sass @@ -0,0 +1,129 @@ +.codeblock + border: 1px solid lighten($menu-background-color, 10%) + color: $text-invert + padding: 0px + width: 100% + overflow-x: auto + background: $menu-background-color + // 1px hack otherwise border won't show. lame + margin: 1px 0 $base-line-height 0 + +.hll + background-color: #49483e +.c + color: #75715e +.err + color: #960050 + background-color: #1e0010 +.k + color: #66d9ef +.l + color: #ae81ff +.n + color: #f8f8f2 +.o + color: #f92672 +.p + color: #f8f8f2 +.cm + color: #75715e +.cp + color: #75715e +.c1 + color: #75715e +.cs + color: #75715e +.ge + font-style: italic +.gs + font-weight: bold +.kc + color: #66d9ef +.kd + color: #66d9ef +.kn + color: #f92672 +.kp + color: #66d9ef +.kr + color: #66d9ef +.kt + color: #66d9ef +.ld + color: #e6db74 +.m + color: #ae81ff +.s + color: #e6db74 +.na + color: #a6e22e +.nb + color: #f8f8f2 +.nc + color: #a6e22e +.no + color: #66d9ef +.nd + color: #a6e22e +.ni + color: #f8f8f2 +.ne + color: #a6e22e +.nf + color: #a6e22e +.nl + color: #f8f8f2 +.nn + color: #f8f8f2 +.nx + color: #a6e22e +.py + color: #f8f8f2 +.nt + color: #f92672 +.nv + color: #f8f8f2 +.ow + color: #f92672 +.w + color: #f8f8f2 +.mf + color: #ae81ff +.mh + color: #ae81ff +.mi + color: #ae81ff +.mo + color: #ae81ff +.sb + color: #e6db74 +.sc + color: #e6db74 +.sd + color: #e6db74 +.s2 + color: #e6db74 +.se + color: #ae81ff +.sh + color: #e6db74 +.si + color: #e6db74 +.sx + color: #e6db74 +.sr + color: #e6db74 +.s1 + color: #e6db74 +.ss + color: #e6db74 +.bp + color: #f8f8f2 +.vc + color: #f8f8f2 +.vg + color: #f8f8f2 +.vi + color: #f8f8f2 +.il + color: #ae81ff diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_light.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_light.sass new file mode 100644 index 0000000..94ac46c --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/pygments/_pygments_light.sass @@ -0,0 +1,146 @@ +.hll + background-color: #ffffcc + margin: 0 -12px + padding: 0 12px + display: block +.c + color: #999988 + font-style: italic +.err + color: #a61717 + background-color: #e3d2d2 +.k + font-weight: bold +.o + font-weight: bold +.cm + color: #999988 + font-style: italic +.cp + color: #999999 + font-weight: bold +.c1 + color: #999988 + font-style: italic +.cs + color: #999999 + font-weight: bold + font-style: italic +.gd + color: #000000 + background-color: #ffdddd +.gd .x + color: #000000 + background-color: #ffaaaa +.ge + font-style: italic +.gr + color: #aa0000 +.gh + color: #999999 +.gi + color: #000000 + background-color: #ddffdd +.gi .x + color: #000000 + background-color: #aaffaa +.go + color: #888888 +.gp + color: #555555 +.gs + font-weight: bold +.gu + color: #800080 + font-weight: bold +.gt + color: #aa0000 +.kc + font-weight: bold +.kd + font-weight: bold +.kn + font-weight: bold +.kp + font-weight: bold +.kr + font-weight: bold +.kt + color: #445588 + font-weight: bold +.m + color: #009999 +.s + color: #dd1144 +.n + color: #333333 +.na + color: teal +.nb + color: #0086b3 +.nc + color: #445588 + font-weight: bold +.no + color: teal +.ni + color: purple +.ne + color: #990000 + font-weight: bold +.nf + color: #990000 + font-weight: bold +.nn + color: #555555 +.nt + color: navy +.nv + color: teal +.ow + font-weight: bold +.w + color: #bbbbbb +.mf + color: #009999 +.mh + color: #009999 +.mi + color: #009999 +.mo + color: #009999 +.sb + color: #dd1144 +.sc + color: #dd1144 +.sd + color: #dd1144 +.s2 + color: #dd1144 +.se + color: #dd1144 +.sh + color: #dd1144 +.si + color: #dd1144 +.sx + color: #dd1144 +.sr + color: #009926 +.s1 + color: #dd1144 +.ss + color: #990073 +.bp + color: #999999 +.vc + color: teal +.vg + color: teal +.vi + color: teal +.il + color: #009999 +.gc + color: #999 + background-color: #EAF2F5 diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_figures.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_figures.sass new file mode 100644 index 0000000..5069d82 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_figures.sass @@ -0,0 +1,190 @@ +figure + position: relative + +figcaption + text-align: center + line-height: $base-line-height + font-size: $base-font-size + +figure[data-type=table] + clear: both +figure[data-type=video] + position: relative + margin-bottom: $base-line-height + text-align: center + clear: both + p + margin: 0 + + &.wy-figure-full + &:before + position: relative + padding-bottom: 51% + width: 100% + height: 0 + content: "" + display: block + iframe + width: 100% + height: 100% + position: absolute + left: 0 + top: 0 + +figure[data-type=image] + position: relative + margin-bottom: $base-line-height + .wy-figure-controls + top: 0px + img + width: 100% + &.wy-figure-large + width: 100% + clear: both + &.wy-figure-medium + width: 50% + &.wy-figure-small + width: 33% + +figure[data-type=quote] + font-family: $custom-font-family + margin-bottom: $base-line-height + margin-left: $base-line-height + font-style: italic + position: relative + border-left: solid 5px $text-color + padding-left: $base-line-height + figcaption + font-weight: bold + text-align: left + .wy-figure-controls + margin-left: -5px + &.wy-figure-medium + font-size: 20px + &.wy-figure-large + font-size: 24px + &.wy-figure-right + width: 33% + &.wy-figure-left + width: 33% + border-left: none + border-right: solid 5px $text-color + padding-left: 0 + padding-right: $base-line-height + margin-left: 0 + margin-right: $base-line-height + .wy-figure-controls + margin-left: 0 + margin-right: -5px + cite + display: block + text-align: left + font-weight: bold + &:before + content: "\2014\00a0" + &:empty:before + opacity: 0.4 + content: "\2014 Type to add citation (optional)" + +figure:hover .wy-figure-controls + display: block + +.wy-figure-controls + background: $gray + padding: $base-line-height / 4 + position: absolute + display: none + min-width: 100% + white-space: nowrap + left: 0 + top: -37px + margin: auto + font-family: $base-font-family + border-bottom: solid 3px darken($gray, 10%) + line-height: $base-line-height + font-style: normal + z-index: 5 + text-align: center +.wy-figure-controls span + display: inline-block + border: none + background: none + color: $text-invert + vertical-align: top + font-size: 14px + width: 24px + height: 24px + line-height: 24px + text-align: center + cursor: pointer + &.#{$icon-prefix}, &:before + line-height: 24px + &:hover + background: rgba(255,255,255,.3) + color: $white + &.on + background: $white + color: $gray + +.wy-figure-controls span + &.wy-figure-controls-divider + width: 1px + background: lighten($gray, 10%) + padding: 0 + margin: 0 2px + cursor: normal + &.wy-figure-controls-small + font-size: 50% + &.wy-figure-controls-medium + font-size: 75% + &.wy-figure-controls-arrow-left + @extend %icon + @extend .#{$icon-prefix}-#{$icon-arrow-left} + &.wy-figure-controls-arrow-right + @extend %icon + @extend .#{$icon-prefix}-#{$icon-arrow-right} + &.wy-figure-controls-arrow-up + @extend %icon + @extend .#{$icon-prefix}-#{$icon-arrow-up} + &.wy-figure-controls-arrow-down + @extend %icon + @extend .#{$icon-prefix}-#{$icon-arrow-down} + &.wy-figure-controls-resize-full + @extend %icon + @extend .#{$icon-prefix}-#{$icon-expand} + &.wy-figure-controls-resize-small + @extend %icon + @extend .#{$icon-prefix}-#{$icon-compress} + &.wy-figure-controls-delete + @extend %icon + @extend .#{$icon-prefix}-#{$icon-trash} + margin-left: $base-line-height + &:hover + background: $red + &.wy-figure-controls-table + @extend %icon + @extend .#{$icon-prefix}-#{$icon-table} + width: auto + padding-left: $base-line-height / 4 + text-align: left + +.wy-figure-right + float: right + margin-left: $base-line-height + .wy-figure-controls + right: 0 + +.wy-figure-left + float: left + margin-right: $base-line-height + +// On mobile, images should be full width ++media($mobile) + figure[data-type=image] + width: 100% !important + float: none !important + margin-left: 0 + margin-right: 0 + figure[data-type=video] iframe + width: 100% !important + height: auto !important diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_redactor.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_redactor.sass new file mode 100644 index 0000000..3aedcd1 --- /dev/null +++ b/debian/missing-sources/wyrm/sass/wyrm_addons/redactor/_redactor.sass @@ -0,0 +1,526 @@ +body + .redactor-air + position: absolute + z-index: $z-index-modal + .redactor_box_fullscreen + position: fixed + top: 0 + left: 0 + z-index: $z-index-modal - 5 + overflow: hidden + width: 100% + +/* + * Fullscreen + +.redactor-fake + background: $white + border: solid 1px $input-border-color + padding: $gutter + +.redactor-box + position: relative + overflow: visible + border: 1px solid $input-border-color + background-color: #fff + +clearfix + iframe + display: block + margin: 0 auto + padding: 0 + textarea + position: relative + display: block + overflow: auto + margin: 0 + padding: $gutter + width: 100% + outline: none + border: none + background-color: $gray-darker + box-shadow: none + color: $text-invert + font-size: 12px + font-family: $code-font-family + resize: none + pre + background: #2d2d2d + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace + font-size: 12px + line-height: 1.5 + padding: $base-line-height / 2 + overflow-x: auto + width: 100% + display: block + border: none + color: $white + white-space: pre-wrap + code + max-width: 100% + figcaption + &:empty:before + opacity: 0.4 + content: "Type to add caption (optional)" + figure[data-type=embed] + background: $table-stripe-color + padding: $base-line-height / 2 + border-radius: 4px + margin-bottom: $base-line-height + &:before + display: block + content: "EMBED: May not render correctly in this preview." + margin-bottom: $base-line-height / 2 + font-size: 80% + color: $red + font-weight: bold + +.redactor_box_fullscreen + background: $background-color + overflow-y: scroll !important + .redactor-editor + max-width: 960px + padding: $gutter + margin: $gutter * 2 auto $gutter !important + +.redactor-editor + font-family: $base-font-family + position: relative + padding: $gutter + padding-bottom: 5px + outline: none + background: #fff + box-shadow: none !important + white-space: normal + font-size: $base-font-size + line-height: $base-line-height + .redactor_placeholder + color: #999 !important + display: block !important + margin-bottom: 10px !important + &.redactor_editor_wym + padding: 10px 7px 0 7px !important + background: #f6f6f6 !important + +// GENERIC STYLING +.redactor-editor + ul + @extend %wy-plain-list-disc + ol + @extend %wy-plain-list-decimal +/* + * TOOLBAR + +.redactor-toolbar + position: relative + top: 0 + left: 0 + margin: 0 !important + padding: 0 !important + padding-left: 1px !important + border-bottom: 2px solid $input-border-color + background: hsl(0,0%,95%) + list-style: none !important + z-index: $z-index-tooltip - 1 + &:after + display: block + visibility: hidden + clear: both + height: 0 + content: "." + +.redactor-toolbar.toolbar_fixed_box + border: 1px solid $input-border-color + border-bottom-color: #b8b8b8 + +.redactor-toolbar li + float: left !important + margin: 0 !important + padding: 2px 0 2px 1px + outline: none + list-style: none !important + &.redactor-separator + float: left + margin: 0 0 0 2px !important + padding: 0 + height: 29px + border-right: 1px solid #f4f4f4 + border-left: 1px solid #d8d8d8 + &.redactor_btn_right + float: right !important + margin-right: 2px !important + a + @extend %icon + zoom: 1 + font-size: 14px + color: $text-color + width: 25px + line-height: 25px + text-align: center + &:hover + outline: none + background-color: $gray-light + color: $white + &:active, &.redactor-act + outline: none + background-color: $text-color + color: $white + +.redactor_button_disabled + opacity: 0.3 + &:hover + cursor: default + +/* + * BUTTONS + * step 25px + +body .redactor-toolbar li a + display: inline-block + &.redactor_btn_html + @extend .#{$icon-prefix}-#{$icon-code} + &.redactor_btn_formatting + @extend .#{$icon-prefix}-#{$icon-text-height} + &.redactor_btn_bold + @extend .#{$icon-prefix}-#{$icon-bold} + &.redactor_btn_italic + @extend .#{$icon-prefix}-#{$icon-italic} + &.redactor_btn_deleted + @extend .#{$icon-prefix}-#{$icon-strikethrough} + &.redactor_btn_unorderedlist + @extend .#{$icon-prefix}-#{$icon-list-ul} + &.redactor_btn_orderedlist + @extend .#{$icon-prefix}-#{$icon-list-ol} + &.redactor_btn_outdent + @extend .#{$icon-prefix}-#{$icon-outdent} + &.redactor_btn_indent + @extend .#{$icon-prefix}-#{$icon-indent} + &.redactor_btn_image + @extend .#{$icon-prefix}-#{$icon-picture} + &.redactor_btn_video + @extend .#{$icon-prefix}-#{$icon-youtube} + &.redactor_btn_file + @extend .#{$icon-prefix}-#{$icon-paperclip} + &.redactor_btn_table + @extend .#{$icon-prefix}-#{$icon-table} + &.redactor_btn_link + @extend .#{$icon-prefix}-#{$icon-link} + &.redactor_btn_quote + @extend .#{$icon-prefix}-#{$icon-quote-right} + &.redactor_btn_fontcolor + background-position: -325px + &.redactor_btn_backcolor + background-position: -350px + &.redactor_btn_alignleft + @extend .#{$icon-prefix}-#{$icon-align-left} + &.redactor_btn_aligncenter + @extend .#{$icon-prefix}-#{$icon-align-center} + &.redactor_btn_alignright + @extend .#{$icon-prefix}-#{$icon-align-right} + &.redactor_btn_justify + @extend .#{$icon-prefix}-#{$icon-align-justify} + &.redactor_btn_horizontalrule + background-position: -475px + &.redactor_btn_underline + background-position: -525px + &.redactor_btn_fullscreen + @extend .#{$icon-prefix}-#{$icon-arrows-alt} + &.redactor_btn_normalscreen + background-position: -575px + &.redactor_btn_clips + background-position: -600px + &.redactor_btn_alignment + background-position: -625px + &.redactor_btn_fontfamily + background-position: -650px + &.redactor_btn_fontsize + background-position: -675px + &.redactor_btn_direction + background-position: -700px + &.redactor_btn_lists + background-position: -725px + &.redactor_btn_font + background-position: -750px + &.redactor_btn_h1 + background-position: -775px + &.redactor_btn_h2 + background-position: -800px + &.redactor_btn_h3 + background-position: -825px + &.redactor_btn_quote + background-position: -850px + &.redactor_btn_pre + background-position: -875px + +/* + * Toolbar classes + +.redactor_format_blockquote + @extend blockquote +.redactor_format_pre + @extend pre +.redactor_format_h1, .redactor_format_h2, .redactor_format_h3, .redactor_format_h4, .redactor_format_h5 + font-weight: bold +.redactor_format_h1 + @extend h1 +.redactor_format_h2 + @extend h2 +.redactor_format_h3 + @extend h3 +.redactor_format_h4 + @extend h4 +.redactor_format_h5 + @extend h5 +/* + * DROPDOWN + +.redactor-dropdown + position: absolute + top: 28px + left: 0 + z-index: $z-index-modal - 1 + padding: $base-line-height / 2 + width: 200px + border: solid 1px $dropdown-border-color + background: $dropdown-color + box-shadow: 0 5px 5px 0 rgba(0,0,0,.1) + font-size: 13px + font-family: $base-font-family + line-height: 21px + .redactor-dropdown-pre + background: $gray-dark + color: $white + font-family: $code-font-family + .redactor-dropdown-code + background: $text-code-background-color + border: solid 1px $text-code-border-color + padding: 0 5px + font-family: $code-font-family + color: $text-code-color + display: inline-block + .redactor-dropdown-h1 + font-size: 175% + font-weight: bold + .redactor-dropdown-h2 + font-size: 150% + font-weight: bold + .redactor-dropdown-h3 + font-size: 125% + font-weight: bold + .redactor-dropdown-h4 + font-size: 115% + font-weight: bold + .redactor-dropdown-h5 + font-size: 110% + font-weight: bold + .redactor-dropdown-h6 + font-weight: bold + + +.redactor-separator-drop + padding: 0 !important + border-top: 1px solid $input-border-color + font-size: 0 + line-height: 0 + +.redactor-dropdown a + display: block + padding: 3px 5px + color: #000 + text-decoration: none + &:hover + background-color: $gray-light + color: #FFF !important + text-decoration: none + +/* MODAL + +#redactor-modal-overlay + @extend .wy-body-mask + +#redactor-modal + @extend .wy-modal + width: 50% !important + margin-left: -25% !important + margin-top: -25% !important + top: 50% !important + +#redactor-modal footer + @extend .wy-btn-group + margin-bottom: 0 + +#redactor-modal-close + @extend .wy-modal-close +.redactor_input + width: 99% + font-size: 14px + +.redactor-modal-box + overflow: auto + margin-bottom: 10px + height: 350px + +#redactor_image_box + overflow: auto + margin-bottom: 10px + height: 270px + +#redactor_image_box_select + display: block + margin-bottom: 15px !important + width: 200px + +#redactor_image_box img + margin-right: 10px + margin-bottom: 10px + max-width: 100px + cursor: pointer + +#redactor_tabs + margin-bottom: 18px + a + display: inline-block + margin-right: 5px + padding: 4px 14px + border: 1px solid #d2d2d2 + border-radius: 10px + background-color: #fff + color: #000 + text-decoration: none + font-size: 12px + line-height: 1 + &:hover, &.redactor_tabs_act + padding: 5px 15px + border: none + background-color: $input-border-color + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset + color: #777 !important + text-decoration: none !important + text-shadow: 0 1px 0 #eee + +.redactor-modal-btn + @extend .btn + width: auto !important +.redactor-modal-action-btn + @extend .btn-success + @extend .#{$icon-prefix} + @extend .#{$icon-prefix}-#{$icon-ok} + &:before + margin-right: 5px +.redactor-modal-close-btn + @extend .btn-neutral + @extend .#{$icon-prefix} + @extend .#{$icon-prefix}-#{$icon-ok} + &:before + margin-right: 5px + +/* Drag and Drop Area + +.redactor_droparea + position: relative + margin: auto + margin-bottom: 5px + width: 100% + .redactor_dropareabox + position: relative + z-index: $z-index-popover + padding: 60px 0 + width: 99% + border: 2px dashed #bbb + background-color: #fff + text-align: center + color: #555 + font-size: 12px + +.redactor_dropalternative + color: #555 + font-size: 12px + margin: 4px 0 2px 0 + +.redactor_dropareabox + &.hover + border-color: #aaa + background: #efe3b8 + &.error + border-color: #dcc3c3 + background: #f7e5e5 + &.drop + border-color: #e0e5d6 + background: #f4f4ee + +.wy-control-group-disabled + .redactor-box, .redactor-editor + background: darken($input-background-color, 2%) + .redactor-toolbar li a + cursor: not-allowed + +#redactor-progress-drag + position: fixed + top: 50% + left: 50% + width: 200px + margin-left: -130px + margin-top: -35px + z-index: $z-index-modal + padding: 30px + background: rgba(0, 0, 0, 0.7) + box-shadow: none + +.redactor-progress + height: 12px + overflow: hidden + background-color: #f4f4f4 + border-radius: 3px + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2) + margin-bottom: 1.5em + .redactor-progress-bar + top: 1px + left: 1px + position: relative + background-color: #55aaff + width: 0 + height: 12px + -webkit-box-sizing: border-box + -moz-box-sizing: border-box + -ms-box-sizing: border-box + box-sizing: border-box + +.redactor-progress-striped .redactor-progress-bar + background-image: url('data:image/gif;base64,R0lGODlhIAAQAIABAP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMTgwMTE3NDA3MjA2ODExODE3QTgyOEM0MzAwRkUyMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3NEY2MUMyQTlDMzgxMUUwOUFFQ0M4MEYwM0YzNUE2RCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3NEY2MUMyOTlDMzgxMUUwOUFFQ0M4MEYwM0YzNUE2RCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAxODAxMTc0MDcyMDY4MTE4MTdBODI4QzQzMDBGRTIzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAxODAxMTc0MDcyMDY4MTE4MTdBODI4QzQzMDBGRTIzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkECQoAAQAsAAAAACAAEAAAAiwMjqkQ7Q/bmijaR+ndee7bLZ8VKmNUJieUVqvTHi8cz1Jtx0yOz7pt6L10BQAh+QQJCgABACwAAAAAIAAQAAACLYwNqctwD2GbKtpH6d157ts1nxUyY1Qup5QmK9Y6LxLPdGsHsTvv8uuzBXuhAgAh+QQJCgABACwAAAAAIAAQAAACLIx/oMsNCKNxdMk7K8VXbx55DhiKDAmZJ5qoFhu4LysrcFzf9QPvet4D0igFACH5BAkKAAEALAAAAAAgABAAAAIsjI8Hy+2QYnyUyWtqxVdvnngUGIoOiZgnmqkWG7gvKy9wXN81BO963gPSGAUAIfkECQoAAQAsAAAAACAAEAAAAixEjqkB7Q/bmijaR+ndee7bLZ8VKmNUJieUVqvTHi8cz1Jtx0yOz7pt6L10BQAh+QQJCgABACwAAAAAIAAQAAACLYQdqctxD2GbKtpH6d157ts1nxUyY1Qup5QmK9Y6LxLPdGsDsTvv8uuzBXuhAgAh+QQJCgABACwAAAAAIAAQAAACLIR/ocsdCKNxdMk7K8VXbx55DhiKDAmZJ5qoFgu4LysrcFzf9QPvet4D0igFACH5BAUKAAEALAAAAAAgABAAAAIshI8Xy+2RYnyUyWtqxVdvnngUGIoOiZgnmqkWC7gvKy9wXN81BO963gPSGAUAOw==') + &:after + content: "" + position: absolute + top: 0 + right: 0 + bottom: 0 + left: 0 + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA6lpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFRTE5QjlCQTlDMkQxMUUwOUFFQ0M4MEYwM0YzNUE2RCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowNkRFQUIzNjlDMkUxMUUwOUFFQ0M4MEYwM0YzNUE2RCI+IDxkYzp0aXRsZT4gPHJkZjpBbHQ+IDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCI+Z3JhZGllbnQ8L3JkZjpsaT4gPC9yZGY6QWx0PiA8L2RjOnRpdGxlPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFRTE5QjlCODlDMkQxMUUwOUFFQ0M4MEYwM0YzNUE2RCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFRTE5QjlCOTlDMkQxMUUwOUFFQ0M4MEYwM0YzNUE2RCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pq477Q0AAAD2SURBVHjaxFIxDsIwDLRF/1AmRp7AM9iYWHkD76AP6h9Qi1SGfqAMqGJg6XA4jts0RUwZiKLEsZ3L+Rwmoi0lDC6Ky4rAMuGO5DY5iuWH93oDegMuK8QA7JIYCMDpvwDDMBzNHCGtONYq2enjHKYLMObCp7dtu/+FDppDgyJpTemsrm/9l7L2ku4aUy4BTEmKR1hmVXV9OjfsqlqC7irAhBKxDnmOQdPc+ynKMXdenEELAFmzrnu8RoK6jpRhHkGJmFgdXmsByNf5Wx+fJPbigEI3OKrB77Bfy2VZzppqC0IfAtlIAusC9CNtUn/iIRXgnALwEWAA/+5+ZNOapmcAAAAASUVORK5CYII=') + + +.redactor-toolbar-tooltip + position: absolute + z-index: $z-index-tooltip + text-align: center + top: 0 + left: 0 + background: rgba(0,0,0,.8) + color: $text-invert + padding: 5px 8px + line-height: 1 + font-size: 12px + border-radius: 2px + ++media($mobile) + body .redactor_toolbar li a + &.redactor_btn_table + display: none + &.redactor_btn_html + display: none + &.redactor_btn_fullscreen + display: none + #redactor-modal + width: 100% !important + margin: 0 !important + left: 0 !important + right: 0 !important + top: 20% !important + -- cgit v1.2.3