Skip to content

Commit

Permalink
initial version of the the file with common CSS styles that should be…
Browse files Browse the repository at this point in the history
… reused if possible
  • Loading branch information
jhilden committed Aug 29, 2009
1 parent 22c7f44 commit 39559fd
Showing 1 changed file with 111 additions and 0 deletions.
111 changes: 111 additions & 0 deletions lib/gallery.common.css
@@ -0,0 +1,111 @@
/* ####### states, interactions, positioning ########### */

/* states */

.g-active, .g-enabled, .g-available, .g-editable, .g-selected, .g-highlight {
font-weight: bold;
}
.g-inactive, .g-disabled, .g-unavailable, .g-uneditable, .g-locked, .g-unselected, .g-understate {
color: #ccc;
font-weight: normal;
}

.g-error, .g-denied {

}
.g-success, .g-allowed {

}
.g-info {

}
.g-warning {

}

.g-open {

}
.g-closed {

}

.g-installed {

}
.g-default {

}

/* interactions */

.g-draggable, .ui-draggable {
cursor: move;
}
.g-target {

}



/* positioning */

.g-right {
float: right;
}
.g-left {
float: left;
}

/* order */

.g-first {

}
.g-last {

}
.g-even-row {

}
.g-odd-row {

}

/* text */

.g-txt-small {
font-size: .8em;
}
.g-txt-big {
font-size: 1.2em;
}
.g-txt-right {
text-align: right;
}

/* ####### reusable containers/widgets ########### */

.g-dialog {

}

.g-button { /* a link styled like a button */

}

.g-progressbar {

}

.g-block {

}

.g-message-box {

}

.g-list-horizontal {

}

0 comments on commit 39559fd

Please sign in to comment.