StartVideoModal.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @import './node_modules/@waca/ca-ui-toolkit/essentials/essentials';
  2. .startVideoModal_dialog{
  3. & .ba-common-dialog__modal{
  4. padding-bottom: 24px !important;
  5. }
  6. & .mainVideoSection {
  7. & .largeVideoThumbnail{
  8. width: 756px;
  9. height: 424px;
  10. position: relative;
  11. border: 1px solid;
  12. @include theming(border-color, ui-02);
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. margin-left: 8px;
  17. }
  18. & .playIndicator{
  19. font-size: 28px;
  20. // color: $gray4;
  21. @include theming(color, text-02);
  22. position: absolute;
  23. left: 32px;
  24. bottom: 32px;
  25. cursor: pointer;
  26. }
  27. & .playIcon{
  28. margin-left: 8px;
  29. margin-bottom: -8px;
  30. }
  31. }
  32. & .videoOptionSection{
  33. margin-top: 24px;
  34. margin-bottom: -36px;
  35. margin-left: 8px;
  36. & .optionBlock{
  37. display: inline-block;
  38. vertical-align: top;
  39. cursor: pointer;
  40. }
  41. & .optionBlock:hover{
  42. & .smallVideoThumbnail{
  43. border: 1px solid #000000;
  44. }
  45. }
  46. & .optionBlock:active{
  47. & .smallVideoThumbnail{
  48. border: 2px solid;
  49. @include theming(border-color, interactive-01);
  50. }
  51. & .smallVideoDescription .videoTitle{
  52. font-size: 14px;
  53. font-weight: bolder;
  54. }
  55. }
  56. & .optionSelected{
  57. & .smallVideoThumbnail{
  58. border: 2px solid;
  59. @include theming(border-color, interactive-01);
  60. }
  61. & .smallVideoDescription .videoTitle{
  62. font-size: 14px;
  63. font-weight: bolder;
  64. }
  65. }
  66. & .optionBlockSeprator{
  67. margin-right: 24px;
  68. }
  69. & .smallVideoThumbnail{
  70. width: 236px;
  71. height: 133px;
  72. border: 1px solid;
  73. @include theming(border-color, ui-02);
  74. }
  75. & .smallVideoDescription{
  76. width: 100%;
  77. display: block;
  78. margin-top: 16px;
  79. & .videoTitle{
  80. font-size: 14px;
  81. }
  82. & .videoLength{
  83. font-size: 12px;
  84. float: right;
  85. }
  86. }
  87. }
  88. }