Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/jScrollPane/style')
-rw-r--r--libs/bower_components/jScrollPane/style/demo.css227
-rw-r--r--libs/bower_components/jScrollPane/style/jquery.jscrollpane.css115
2 files changed, 0 insertions, 342 deletions
diff --git a/libs/bower_components/jScrollPane/style/demo.css b/libs/bower_components/jScrollPane/style/demo.css
deleted file mode 100644
index 1dab4a95d6..0000000000
--- a/libs/bower_components/jScrollPane/style/demo.css
+++ /dev/null
@@ -1,227 +0,0 @@
-/*
- * CSS Styles that are used on the jScrollPane demo site - these are custom to the site and
- * you shouldn't need to use them in your own implementations of jScrollPane.
- */
-
-*
-{
- margin: 0;
- padding: 0;
-}
-
-html,
-body
-{
- background: #aac;
-}
-
-body
-{
- font: 13px/1.231 arial,helvetica,clean,sans-serif
-}
-
-#top-nav
-{
- width: 780px;
- background: #50506d;
- padding: 0 20px 12px 0;
- margin: 0 auto 20px;
- overflow: hidden;
-
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
- -moz-border-radius-topleft: 0;
- -webkit-border-top-left-radius: 0;
- border-radius-topleft: 0;
- -moz-border-radius-topright: 0;
- -webkit-border-top-right-radius: 0;
- border-radius-topright: 0;
-}
-
-#top-nav img
-{
- float: left;
-}
-
-#top-nav ul
-{
- margin: 28px 0 0;
- overflow: hidden;
- float: right;
-}
-
-#top-nav ul li
-{
- float: left;
- padding: 0 0 0 1em;
- list-style: none;
-}
-
-#top-nav ul li a
-{
- color: #fff;
-}
-
-#top-nav ul li a:hover
-{
- color: #ffa;
-}
-
-#top-nav ul li:last-child
-{
- padding-right: 0;
-}
-
-#container
-{
- width: 760px;
- background: #eeeef4;
- padding: 20px;
- margin: 20px auto;
-
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
-}
-
-h1
-{
- font-size: 116%;
- color: #fff;
- background: #50506d;
- margin: 0 0 1em;
- padding:4px 8px 5px;
-
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-h2
-{
- clear: left;
- font-size: 100%;
- color: #fff;
- background: #8b8b9f;
- margin: 1em 0;
- padding:4px 8px 5px;
-
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-h2 span.setting-type
-{
- font-weight: normal;
-}
-
-p
-{
- font-size: 93%;
- margin: 1em 0;
-}
-
-p.intro
-{
- font-size: 116%;
- padding: 10px;
- background: #fff;
-
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-
-}
-
-a
-{
- color: #7171D4;
- text-decoration: none;
-}
-
-a:hover
-{
- color: #f60;
-}
-
-ul
-{
- padding: 0 0 0 1em;
-}
-
-ul li
-{
- margin: 0 0 .5em;
-}
-
-ul.link-list li
-{
- margin: 0;
-}
-
-ul p
-{
- margin: 0;
-}
-
-/* For the form demo page */
-
-form
-{
- overflow: hidden;
-}
-
-fieldset
-{
- border: 0;
- overflow: hidden;
-}
-
-legend
-{
- font-weight: bold;
- margin: 1em 0;
-}
-
-label
-{
- clear: left;
- float: left;
- margin: .5em 6px 0 0;
- text-align: right;
- width: 100px;
-}
-
-input,
-select,
-textarea
-{
- float: left;
- border: 0;
- padding: 3px 5px;
- margin: 0 0 .5em;
-}
-
-input[type=button],
-input[type=submit]
-{
- clear: left;
- background: #fff;
- width: auto;
- margin: 0 0 0 106px;
-}
-
-pre
-{
- background: #fff;
- padding: 10px;
- font-size: 93%;
- width: 740px;
-
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- overflow: auto;
-}
diff --git a/libs/bower_components/jScrollPane/style/jquery.jscrollpane.css b/libs/bower_components/jScrollPane/style/jquery.jscrollpane.css
deleted file mode 100644
index 57ccca2531..0000000000
--- a/libs/bower_components/jScrollPane/style/jquery.jscrollpane.css
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * CSS Styles that are needed by jScrollPane for it to operate correctly.
- *
- * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
- * may not operate correctly without them.
- */
-
-.jspContainer
-{
- overflow: hidden;
- position: relative;
-}
-
-.jspPane
-{
- position: absolute;
-}
-
-.jspVerticalBar
-{
- position: absolute;
- top: 0;
- right: 0;
- width: 16px;
- height: 100%;
- background: red;
-}
-
-.jspHorizontalBar
-{
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 16px;
- background: red;
-}
-
-.jspCap
-{
- display: none;
-}
-
-.jspHorizontalBar .jspCap
-{
- float: left;
-}
-
-.jspTrack
-{
- background: #dde;
- position: relative;
-}
-
-.jspDrag
-{
- background: #bbd;
- position: relative;
- top: 0;
- left: 0;
- cursor: pointer;
-}
-
-.jspHorizontalBar .jspTrack,
-.jspHorizontalBar .jspDrag
-{
- float: left;
- height: 100%;
-}
-
-.jspArrow
-{
- background: #50506d;
- text-indent: -20000px;
- display: block;
- cursor: pointer;
- padding: 0;
- margin: 0;
-}
-
-.jspArrow.jspDisabled
-{
- cursor: default;
- background: #80808d;
-}
-
-.jspVerticalBar .jspArrow
-{
- height: 16px;
-}
-
-.jspHorizontalBar .jspArrow
-{
- width: 16px;
- float: left;
- height: 100%;
-}
-
-.jspVerticalBar .jspArrow:focus
-{
- outline: none;
-}
-
-.jspCorner
-{
- background: #eeeef4;
- float: left;
- height: 100%;
-}
-
-/* Yuk! CSS Hack for IE6 3 pixel bug :( */
-* html .jspCorner
-{
- margin: 0 -3px 0 0;
-} \ No newline at end of file