Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
05693133dd
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (20 sloc) 583 Bytes
/* - - - - - - - - - - - - - - - - - - -
== Utilities
- - - - - - - - - - - - - - - - - - - */
@mixin cs-word-break(){
/*
-ms-word-break: break-all;
word-break: break-all;
// Non standard for webkit
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
*/
}
//users can, and are adding bs modal windows in main content areas.
//However, the navigation z-index coflicts.
// by adding this position:absolute; they get very close to the same effect as a normal modal, but doesn;t conflict with nav.
#content .modal {
position:absolute;
}