lib/letter_opener/web/assets/stylesheets/application.css in letter_opener-web-0.1.2 vs lib/letter_opener/web/assets/stylesheets/application.css in letter_opener-web-0.2.0

- old
+ new

@@ -54,10 +54,18 @@ position: absolute; } #delete { display:inline; } +#search { + top: 0px; + left: 128px; + position: absolute; +} +#search .form-control-feedback { + right: 0px; +} .left { overflow-y: auto; margin-top: 96px; width: 400px; } @@ -115,6 +123,16 @@ li.message.active { background-color: #5054d2; } li.message.active a { color: #fff; +} +.glyphicon-animate { + animation-name: rotateThis; + animation-duration: .5s; + animation-iteration-count: infinite; + animation-timing-function: linear; +} +@keyframes rotateThis { + from { transform: scale( 1 ) rotate( 0deg ); } + to { transform: scale( 1 ) rotate( 360deg ); } }