Skip to content
Permalink
master
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
/* - - - - - - - - - - - - - - - - - - -
== 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;
}