Skip to content

Commit

Permalink
Add a compiling script, use new incrementor names for scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Inviz committed Oct 14, 2010
1 parent 8630bf4 commit 32f0dfc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Demos/Assets/Styles/Themes/Aristo/screen.css
Expand Up @@ -155,10 +155,10 @@ position: absolute;
.art.scrollbar.is-vertical .art.button {
height: 14px;
z-index: 100; }
html > body .art.scrollbar.is-vertical .art.button.id-increment {
html > body .art.scrollbar.is-vertical .art.button.id-incrementor {
-art-glyph: ART.Glyphs.triangleUp;
top: 0; }
html > body .art.scrollbar.is-vertical .art.button.id-decrement {
html > body .art.scrollbar.is-vertical .art.button.id-decrementor {
-art-glyph: ART.Glyphs.triangleDown;
bottom: 0; }
.art.scrollbar.is-vertical .art.track {
Expand Down
12 changes: 6 additions & 6 deletions Demos/aristo.html
Expand Up @@ -68,9 +68,9 @@
var Aristo = new Class({
Includes: [
ART.Application,
ART.Widget.Trait.Draggable,
ART.Widget.Trait.Fitting,
Widget.Trait.Focus
ART.Widget.Trait.Draggable.Stateful,
Widget.Trait.Focus.Stateful,
ART.Widget.Trait.Fitting
],

events: {
Expand Down Expand Up @@ -133,9 +133,9 @@
var Scrollable = new Class({
Includes: [
ART.Application,
ART.Widget.Trait.Draggable,
ART.Widget.Trait.Fitting,
Widget.Trait.Focus
ART.Widget.Trait.Draggable.Stateful,
Widget.Trait.Focus.Stateful,
ART.Widget.Trait.Fitting
],

events: {
Expand Down
10 changes: 5 additions & 5 deletions Demos/index.html
Expand Up @@ -45,11 +45,11 @@
var HUD = new Class({
Includes: [
ART.Application,
ART.Widget.Trait.Draggable,
ART.Widget.Trait.Resizable,
ART.Widget.Trait.ResizableContainer,
ART.Widget.Trait.Fitting,
Widget.Trait.Focus
Widget.Trait.Focus.Stateful,
ART.Widget.Trait.Draggable.Stateful,
ART.Widget.Trait.Resizable.Stateful,
ART.Widget.Trait.Resizable.Container,
ART.Widget.Trait.Fitting
],

events: {
Expand Down
4 changes: 2 additions & 2 deletions Styles/Themes/Aristo/_Scrollbar.sass
Expand Up @@ -42,10 +42,10 @@ scrollbar
button
:height 14px
:z-index 100
&#increment
&#incrementor
:glyph glyph("triangleUp")
:top 0
&#decrement
&#decrementor
:glyph glyph("triangleDown")
:bottom 0
track
Expand Down
1 change: 1 addition & 0 deletions bin/compile.sh
@@ -0,0 +1 @@
sass Styles:Demos/Assets/Styles -r ../lsd-examples/lib/sass/extras --watch

0 comments on commit 32f0dfc

Please sign in to comment.