summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/wyrm/sass/wyrm_addons/elements
diff options
context:
space:
mode:
Diffstat (limited to 'debian/missing-sources/wyrm/sass/wyrm_addons/elements')
-rw-r--r--debian/missing-sources/wyrm/sass/wyrm_addons/elements/_modal.sass67
-rw-r--r--debian/missing-sources/wyrm/sass/wyrm_addons/elements/_paginate.sass44
-rw-r--r--debian/missing-sources/wyrm/sass/wyrm_addons/elements/_stars.sass56
-rw-r--r--debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass47
4 files changed, 214 insertions, 0 deletions
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:
+// <ul class="wy-paginate {$modifiers}">
+// <li><a href="">&laquo;</a></li>
+// <li class="active"><a href="">3</a></li>
+// <li><a href="">4</a></li>
+// <li><a href="">5</a></li>
+// <li><a href="">6</a></li>
+// <li class="dots"><a href="">..</a></li>
+// <li><a href="">92</a></li>
+// <li><a href="">&raquo;</a></li>
+// </ul>
+//
+// .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:
+// <span class="wy-star {$modifiers}"></span>
+//
+// .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
+
+
+