Sha256: 31588db8569e97203fdd0b7eed0d2e5e285038c528a535388f99a6ed29157bc7

Contents?: true

Size: 1.3 KB

Versions: 11

Compression:

Stored size: 1.3 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:   -moz-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-hidden {
  display: none !important;
}

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

/* 3D-accelerate panes in MobileSafari */
.mobile-safari .sc-pane {
  -webkit-transform: translate3d(0,0,0);
}

/*User the following to know what view has the focus in webkit*/
/*.sc-view .focus {
  outline: auto 5px -webkit-focus-ring-color; 
  outline-offset: -2px;
}*/

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
sproutcore-1.6.0.beta.3-x86-mingw32 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.6.0.beta.3-java lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.6.0.beta.3 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.6.0.beta.2-x86-mingw32 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.6.0.beta.2-java lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.6.0.beta.2 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.6.0.beta.1 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.5.0-java lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.5.0 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.5.0.rc.2 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css
sproutcore-1.5.0.rc.1 lib/frameworks/sproutcore/frameworks/core_foundation/resources/view.css