Dan Brown

Improved multi-line callout rendering

Closes #300
...@@ -135,11 +135,19 @@ ...@@ -135,11 +135,19 @@
135 border-left: 3px solid #BBB; 135 border-left: 3px solid #BBB;
136 background-color: #EEE; 136 background-color: #EEE;
137 padding: $-s; 137 padding: $-s;
138 + padding-left: $-xl;
138 display: block; 139 display: block;
140 + position: relative;
139 &:before { 141 &:before {
140 font-family: 'Material-Design-Iconic-Font'; 142 font-family: 'Material-Design-Iconic-Font';
141 - padding-right: $-s; 143 + left: $-xs + 4px;
144 + top: 50%;
145 + margin-top: -9px;
146 + //top: $-xs + 5px;
142 display: inline-block; 147 display: inline-block;
148 + position: absolute;
149 + font-size: 1.222em;
150 + line-height: 1;
143 } 151 }
144 &.success { 152 &.success {
145 border-left-color: $positive; 153 border-left-color: $positive;
......