forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,034 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/** | ||
* The dialog content element. | ||
*/ | ||
.dial-out-content { | ||
margin-top: 5px; | ||
|
||
/** | ||
* The style of the flag icon. | ||
*/ | ||
.dial-out-flag-icon { | ||
position: absolute; | ||
left: 5px; | ||
top: 10px; | ||
} | ||
|
||
/** | ||
* The style of the dial code element. | ||
*/ | ||
.dial-out-code { | ||
padding-left: 25px !important; | ||
} | ||
|
||
/** | ||
* The dial-out dialog error element. | ||
*/ | ||
.dial-out-error { | ||
color: $errorColor; | ||
} | ||
|
||
/** | ||
* The style of the dial input element. | ||
*/ | ||
.dial-out-input { | ||
padding-left: 70px; | ||
} | ||
|
||
/** | ||
* Re-styling the default dropdown inside the dial-out-content. | ||
*/ | ||
.dropdown { | ||
left: $formPadding; | ||
position: absolute !important; | ||
width: 65px | ||
} | ||
|
||
/** | ||
* Re-styling the default form-control inside the dial-out-content. | ||
*/ | ||
.form-control { | ||
padding-bottom: 8px !important; | ||
} | ||
|
||
.dropdown { | ||
display: inline-block; | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.dropdown-trigger-icon { | ||
position: absolute; | ||
right: 0; | ||
top: 4px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
.flag-icon-background { | ||
background-size: contain; | ||
background-position: 50%; | ||
background-repeat: no-repeat; | ||
} | ||
.flag-icon { | ||
background-size: contain; | ||
background-position: 50%; | ||
background-repeat: no-repeat; | ||
position: relative; | ||
display: inline-block; | ||
width: 1.33333333em; | ||
line-height: 1em; | ||
} | ||
.flag-icon:before { | ||
content: "\00a0"; | ||
} | ||
.flag-icon-au { | ||
background-image: url(../images/countries/au.svg); | ||
} | ||
.flag-icon-ca { | ||
background-image: url(../images/countries/ca.svg); | ||
} | ||
.flag-icon-de { | ||
background-image: url(../images/countries/de.svg); | ||
} | ||
.flag-icon-gb { | ||
background-image: url(../images/countries/gb.svg); | ||
} | ||
.flag-icon-fr { | ||
background-image: url(../images/countries/fr.svg); | ||
} | ||
.flag-icon-us { | ||
background-image: url(../images/countries/us.svg); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.form-control { | ||
padding: 16px 0; | ||
padding: $formPadding 0; | ||
|
||
&:first-child { | ||
padding-top: 0; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { Symbol } from '../base/react'; | ||
|
||
/** | ||
* The type of the action which signals a check for a dial-out phone number has | ||
* succeeded. | ||
* | ||
* { | ||
* type: PHONE_NUMBER_CHECKED, | ||
* response: Object | ||
* } | ||
*/ | ||
export const PHONE_NUMBER_CHECKED | ||
= Symbol('PHONE_NUMBER_CHECKED'); | ||
|
||
/** | ||
* The type of the action which signals a cancel of the dial-out operation. | ||
* | ||
* { | ||
* type: DIAL_OUT_CANCELED, | ||
* response: Object | ||
* } | ||
*/ | ||
export const DIAL_OUT_CANCELED | ||
= Symbol('DIAL_OUT_CANCELED'); | ||
|
||
/** | ||
* The type of the action which signals a request for dial-out country codes has | ||
* succeeded. | ||
* | ||
* { | ||
* type: DIAL_OUT_CODES_UPDATED, | ||
* response: Object | ||
* } | ||
*/ | ||
export const DIAL_OUT_CODES_UPDATED | ||
= Symbol('DIAL_OUT_CODES_UPDATED'); | ||
|
||
/** | ||
* The type of the action which signals a failure in some of dial-out service | ||
* requests. | ||
* | ||
* { | ||
* type: DIAL_OUT_SERVICE_FAILED, | ||
* response: Object | ||
* } | ||
*/ | ||
export const DIAL_OUT_SERVICE_FAILED | ||
= Symbol('DIAL_OUT_SERVICE_FAILED'); |
Oops, something went wrong.