less-rails-semantic_ui 1.11.5.0 → 1.11.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f4f846c20673112036c94383c7e5aaf0a9c0f66
4
- data.tar.gz: cabb4b99f6798c3e187f26555b692b316fab2409
3
+ metadata.gz: ed3182a6422be0f5a4dfb69be082d45ed92709f7
4
+ data.tar.gz: d30f11a2af3832f1ba7e33b02865c928a2b77e84
5
5
  SHA512:
6
- metadata.gz: cd3cd11b4ab9bb0468f74fa4d753005712a57b5fbea711c67419546f66dc5ab89c51e08de6293d1233aff45dcfee7b06f865e7255d9d2b1345d68ad917b4caf1
7
- data.tar.gz: 9e607d5deb9768f0f7e45ed657b58e988a3f36aeb945101ae286d7b47a70ef20f6b1561a15ffc84a49485487eb2319e670a6e74a7afde71e7bb01f4d18b0e587
6
+ metadata.gz: d5f6f73132913790d98c4009554714ef454ca418c1fec2734e1396929b63888c9e587029ca3f9d2f7288717749001396569422eb85c8af49300bd02cadb662b6
7
+ data.tar.gz: 93fe37485c0773a4cbe4ebb307fec9d5322faca1ae27701cc40a037fb820aa776641fe6abc030cca06f85c29e0a7f113e4ef84eb8834fea6baf152c1f32dd918
@@ -565,22 +565,24 @@
565
565
  Required Field
566
566
  ---------------------*/
567
567
 
568
- .ui.form .required.fields > .field > label:after,
568
+ .ui.form .required.fields:not(.grouped) > .field > label:after,
569
+ .ui.form .required.fields.grouped > label:after,
569
570
  .ui.form .required.field > label:after,
570
- .ui.form .required.fields > .field > .checkbox:after,
571
+ .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
571
572
  .ui.form .required.field > .checkbox:after {
572
573
  margin: @requiredMargin;
573
574
  content: @requiredContent;
574
575
  color: @requiredColor;
575
576
  }
576
577
 
577
- .ui.form .required.fields > .field > label:after,
578
+ .ui.form .required.fields:not(.grouped) > .field > label:after,
579
+ .ui.form .required.fields.grouped > label:after,
578
580
  .ui.form .required.field > label:after {
579
581
  display: inline-block;
580
582
  vertical-align: top;
581
583
  }
582
584
 
583
- .ui.form .required.fields > .field > .checkbox:after,
585
+ .ui.form .required.fields:not(.grouped) > .field > .checkbox:after,
584
586
  .ui.form .required.field > .checkbox:after {
585
587
  position: absolute;
586
588
  top: 0%;
@@ -897,4 +899,4 @@
897
899
  font-size: @huge;
898
900
  }
899
901
 
900
- .loadUIOverrides();
902
+ .loadUIOverrides();
@@ -36,12 +36,12 @@
36
36
 
37
37
  .ui.input {
38
38
  position: relative;
39
- display: inline-block;
39
+ display: inline-flex;
40
40
  color: @inputColor;
41
41
  }
42
42
  .ui.input input {
43
43
  margin: 0em;
44
- width: 100%;
44
+ flex-grow: 1;
45
45
  outline: none;
46
46
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
47
47
  text-align: @textAlign;
@@ -284,7 +284,7 @@
284
284
  display: inline-flex;
285
285
  }
286
286
  .ui.labeled.input > .label {
287
- flex: 1 0 auto;
287
+ flex-grow: 0;
288
288
  margin: 0;
289
289
  font-size: 1em;
290
290
  }
@@ -350,7 +350,7 @@
350
350
 
351
351
  .ui.action.input > .button,
352
352
  .ui.action.input > .buttons {
353
- flex: 1 0 auto;
353
+ flex-grow: 0;
354
354
  }
355
355
  .ui.action.input > .button,
356
356
  .ui.action.input > .buttons > .button {
@@ -406,7 +406,7 @@ select.ui.dropdown {
406
406
  /* Scrollbar in IE */
407
407
  @media all and (-ms-high-contrast:none) {
408
408
  .ui.selection.dropdown .menu {
409
- min-width: ~"calc(100% - "@scrollBarWidth~")";
409
+ min-width: ~"calc(100% - "@scrollbarWidth~")";
410
410
  }
411
411
  }
412
412
 
@@ -434,9 +434,7 @@ select.ui.dropdown {
434
434
  /* Menu Item */
435
435
  .ui.selection.dropdown .menu > .item {
436
436
  border-top: @selectionItemDivider;
437
- padding-left: @selectionHorizontalPadding !important;
438
- /* Add in spacing for scroll bar */
439
- padding-right: ~"calc("@selectionHorizontalPadding~" + 1em) !important~";
437
+ padding: @selectionItemPadding !important;
440
438
  white-space: normal;
441
439
  word-wrap: normal;
442
440
  }
@@ -375,7 +375,7 @@
375
375
  --------------------*/
376
376
 
377
377
  /* Rendered Scrollbar Width */
378
- @scrollBarWidth: 15px;
378
+ @scrollbarWidth: 15px;
379
379
 
380
380
  /* Used to match floats with text */
381
381
  @lineHeightOffset : ((@lineHeight - 1em) / 2);
@@ -68,7 +68,7 @@
68
68
 
69
69
  /* Menu Header */
70
70
  @menuHeaderColor: @darkTextColor;
71
- @menuHeaderFontSize: 0.8em;
71
+ @menuHeaderFontSize: 0.7857rem;
72
72
  @menuHeaderFontWeight: bold;
73
73
  @menuHeaderTextTransform: uppercase;
74
74
  @menuHeaderMargin: 1rem 0rem 0.75rem;
@@ -143,6 +143,10 @@
143
143
  @selectionMenuBoxShadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
144
144
  @selectionMenuItemBoxShadow: none;
145
145
 
146
+ @selectionItemHorizontalPadding: @itemHorizontalPadding;
147
+ @selectionItemVerticalPadding: @itemVerticalPadding;
148
+ @selectionItemPadding: @selectionItemVerticalPadding @selectionItemHorizontalPadding;
149
+
146
150
  @selectionTransition:
147
151
  @transition,
148
152
  box-shadow 0.2s @defaultEasing,
@@ -1,7 +1,7 @@
1
1
  module Less
2
2
  module Rails
3
3
  module SemanticUI
4
- VERSION = '1.11.5.0'
4
+ VERSION = '1.11.6.0'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less-rails-semantic_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.5.0
4
+ version: 1.11.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maxim Dobryakov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-24 00:00:00.000000000 Z
11
+ date: 2015-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: less-rails