Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MONUI-116: Tweak callflow styles #112

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion style/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -617,6 +618,7 @@
#ws_callflow .tools .search-box,
.callflow-preview .tools .search-box {
background: #444;
position: relative;
}

#ws_callflow .tools .search-box input,
Expand Down
14 changes: 14 additions & 0 deletions style/icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}