Sha256: a6e4b74d6e07bc5c069e8d0dc0d499ee32e7de55ce2162d30e89f77b71dde985

Contents?: true

Size: 1.01 KB

Versions: 10

Compression:

Stored size: 1.01 KB

Contents

/*
  These CSS styles apply to all views.
*/

/* default behaviors for all views: 
 - use "pointer" cursor unless otherwise required 
 - clip overflow
*/
.sc-view {
  cursor:             default;
  overflow:           hidden;
  position:           absolute; /* all views are absolutely positioned. */
  -moz-user-select:   none;
  -khtml-user-select: none;
  user-select:        none;
  margin:             0px;
}

/* Views do not allow text selection unless you set isTextSelectable to YES.*/
.sc-view.allow-select {
  -moz-user-select: text;
  -khtml-user-select: text;
  user-select: text;
  cursor:  text;
}

/* Make sure focus outlines do not appear.  These don't look good. */
.sc-view:focus, a.sc-view:focus,
.sc-view:active, a.sc-view:active {
  outline: none;
}

/* Images by default do not have a border inside of an image */
.sc-view img {
  border: none ;
}

.sc-view.hidden {
  display: none !important;
}

/* This className is useful when aligning buttons to the right */
.sc-view.textAlignRight {
  text-align:right;
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sproutit-sproutcore-1.0.0.20090720093355 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.0.20090720202429 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.0.20090721125122 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.126 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.20090721145251 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.20090721145280 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.20090721145281 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.20090721145282 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.20090721145285 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css
sproutit-sproutcore-1.0.203 frameworks/sproutcore/frameworks/foundation/english.lproj/view.css