Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/espterm/espterm-front-end/src/commit/75496b8b005bdfd520e7c44e33fa218089d61c8f/sass/lib/bourbon/addons/_ellipsis.scss You should set ROOT_URL correctly, otherwise the web may not work correctly.
ESPTerm web interface submodule, separated to make testing and development easier
 
 
 
 
 
espterm-front-end/sass/lib/bourbon/addons/_ellipsis.scss

30 lines
669 B

@charset "UTF-8";
/// Truncates text and adds an ellipsis to represent overflow.
///
/// @param {Number} $width [100%]
/// Max-width for the string to respect before being truncated
///
/// @example scss - Usage
/// .element {
/// @include ellipsis;
/// }
///
/// @example css - CSS Output
/// .element {
/// display: inline-block;
/// max-width: 100%;
/// overflow: hidden;
/// text-overflow: ellipsis;
/// white-space: nowrap;
/// word-wrap: normal;
/// }
@mixin ellipsis($width: 100%) {
display: inline-block;
max-width: $width;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}