2017-05-19 15:12:24 +00:00
|
|
|
/**
|
|
|
|
* The dialog content element.
|
|
|
|
*/
|
|
|
|
.dial-out-content {
|
|
|
|
margin-top: 5px;
|
|
|
|
|
2017-07-28 20:35:04 +00:00
|
|
|
/**
|
|
|
|
* Wrap the contents in flex so items can be aligned on the same line.
|
|
|
|
*/
|
|
|
|
.form-control {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-05-19 15:12:24 +00:00
|
|
|
/**
|
|
|
|
* The style of the flag icon.
|
|
|
|
*/
|
|
|
|
.dial-out-flag-icon {
|
|
|
|
position: absolute;
|
|
|
|
left: 5px;
|
2017-07-28 20:35:04 +00:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The style of the dial code element.
|
|
|
|
*/
|
|
|
|
.dial-out-code {
|
2017-07-28 20:35:04 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 25px;
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The dial-out dialog error element.
|
|
|
|
*/
|
|
|
|
.dial-out-error {
|
|
|
|
color: $errorColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The style of the dial input element.
|
|
|
|
*/
|
|
|
|
.dial-out-input {
|
2017-07-28 20:35:04 +00:00
|
|
|
display: inline-block;
|
|
|
|
flex: 1;
|
|
|
|
margin-left: 5px;
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Re-styling the default dropdown inside the dial-out-content.
|
|
|
|
*/
|
|
|
|
.dropdown {
|
2017-07-28 20:35:04 +00:00
|
|
|
position: relative;
|
|
|
|
width: 65px;
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Re-styling the default form-control inside the dial-out-content.
|
|
|
|
*/
|
|
|
|
.form-control {
|
2017-07-28 20:35:04 +00:00
|
|
|
margin-bottom: 8px;
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
2017-07-28 20:35:04 +00:00
|
|
|
|
|
|
|
input {
|
|
|
|
padding-left: 16px;
|
|
|
|
|
|
|
|
&:read-only {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-trigger-icon {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2017-07-28 20:35:04 +00:00
|
|
|
top: 50%;
|
|
|
|
transform: translate(0, -50%);
|
2017-05-19 15:12:24 +00:00
|
|
|
}
|
|
|
|
}
|