Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_recording.scss 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .recordingSpinner {
  2. vertical-align: top;
  3. }
  4. .recording-dialog {
  5. flex: 0;
  6. flex-direction: column;
  7. .recording-header {
  8. display: flex;
  9. flex: 0;
  10. flex-direction: row;
  11. justify-content: space-between;
  12. align-items: center;
  13. .recording-title {
  14. font-size: 16px;
  15. font-weight: bold;
  16. }
  17. }
  18. .authorization-panel {
  19. display: flex;
  20. flex-direction: column;
  21. margin-bottom: 10px;
  22. padding-bottom: 10px;
  23. .dropbox-sign-in {
  24. align-items: center;
  25. border: 1px solid #4285f4;
  26. background-color: white;
  27. border-radius: 2px;
  28. cursor: pointer;
  29. display: inline-flex;
  30. padding: 10px;
  31. font-size: 18px;
  32. font-weight: 600;
  33. margin: 10px 0px;
  34. color: #4285f4;
  35. .dropbox-logo {
  36. background-color: white;
  37. border-radius: 2px;
  38. display: inline-block;
  39. padding-right: 5px;
  40. height: 18px;
  41. }
  42. }
  43. .logged-in-panel {
  44. padding: 10px;
  45. }
  46. }
  47. }
  48. .live-stream-dialog {
  49. /**
  50. * Set font-size to be consistent with Atlaskit FieldText.
  51. */
  52. font-size: 14px;
  53. .broadcast-dropdown,
  54. .broadcast-dropdown-trigger {
  55. text-align: left;
  56. }
  57. .form-footer {
  58. display: flex;
  59. margin-top: 5px;
  60. text-align: right;
  61. }
  62. .live-stream-cta {
  63. a {
  64. cursor: pointer;
  65. }
  66. }
  67. .google-api {
  68. margin-top: 10px;
  69. min-height: 36px;
  70. text-align: center;
  71. width: 100%;
  72. }
  73. .google-error {
  74. color: $errorColor;
  75. }
  76. .google-panel {
  77. align-items: center;
  78. border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  79. display: flex;
  80. flex-direction: column;
  81. padding-bottom: 10px;
  82. }
  83. .helper-link {
  84. cursor: pointer;
  85. display: inline-block;
  86. flex-shrink: 0;
  87. margin-left: auto;
  88. }
  89. .warning-text {
  90. color:#FFD740;
  91. font-size: 12px;
  92. }
  93. }