Skip to content

Commit 6a7840a

Browse files
authored
Merge pull request #199 from rackerlabs/feedback-from-ctui
refactor(*): feedback from CTUI
2 parents 02dd4a6 + 144c415 commit 6a7840a

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

src/helix-ui.less

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,7 @@ figure {
104104
@import 'modules/text-input';
105105
@import 'modules/typography';
106106

107-
108-
/* ========== HELPERS ========== *\
109-
- Class Selectors ONLY
110-
- NO Elements Selectors
111-
- NO !important
112-
\* ============================= */
113-
@import 'helpers/alignment';
114-
@import 'helpers/wrapping';
107+
@import 'helpers';
115108

116109

117110
/* ========== OVERRIDES ========== *\

src/helix-ui/styles/helpers.less

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* ========== HELPERS ========== *\
2+
- Class Selectors ONLY
3+
- NO Elements Selectors
4+
- NO !important
5+
\* ============================= */
6+
@import 'helpers/alignment';
7+
@import 'helpers/wrapping';
8+
9+
.hxTruncate {
10+
overflow-x: hidden;
11+
text-overflow: ellipsis;
12+
white-space: nowrap;
13+
}

src/helix-ui/styles/modules/grid.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
.column() {
88
flex-grow: 1;
99
margin: 0 0 @grid-gutter-size;
10+
min-width: 0;
1011
padding: 0 @col-padding;
1112
}
1213

0 commit comments

Comments
 (0)