diff --git a/style/app.css b/style/app.css index bd85c676..b1a3abff 100644 --- a/style/app.css +++ b/style/app.css @@ -202,6 +202,7 @@ #ws_callflow .tools .inactive .open, .callflow-preview .tools .inactive .open{ background-image: url(static/images/arrow_inactive.png); + cursor: pointer; } #ws_callflow .tools .tool, @@ -285,7 +286,7 @@ #ws_callflow .children > .child > .span_arrow, .callflow-preview .children > .child > .span_arrow { display: inline-block; - width: 145px; + width: 100%; background-repeat: no-repeat; background-position: center center; margin: 2px 0px 2px; @@ -617,6 +618,7 @@ #ws_callflow .tools .search-box, .callflow-preview .tools .search-box { background: #444; + position: relative; } #ws_callflow .tools .search-box input, diff --git a/style/icons.css b/style/icons.css index 3eb1d306..b3c6a0a4 100644 --- a/style/icons.css +++ b/style/icons.css @@ -1326,3 +1326,17 @@ background-position: -992px -448px; } +/** + * Icon fixes for the default icon sets, each set requiring + * a different correction (tops being cut off in 32x32, + * bottoms being cut off in 24x24) + */ +.icon:not(.medium) { + margin-top: -10px; + padding-top: 10px; + background-origin: content-box; +} +.icon.medium { + margin-top: -2px; + padding-top: 2px; +}