main.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /** SCREENSHARE **/
  2. /* Conteneur principal du plugin screenshare */
  3. .screenshare {
  4. }
  5. #screenshares {
  6. }
  7. /* formulaire d'édition de screenvideo */
  8. .screenshare .screen-video-form {
  9. }
  10. #screen-video-form {
  11. }
  12. .screenshare-preview{
  13. width: 100%;
  14. height:auto;
  15. background: #333333;
  16. }
  17. .screenshare-preview-block{
  18. max-height: 336px;
  19. }
  20. .screenshare-preview-block .screenshare-button-bar{
  21. position: absolute;
  22. bottom:15px;
  23. z-index: 10;
  24. right:calc(50% - 65px);
  25. border-radius: 20px ;
  26. background: #ffffff;
  27. width:130px;
  28. }
  29. .screenshare-preview-block {
  30. position: relative;
  31. }
  32. .html.module-screenshare,.html.module-screenshare body{
  33. background: #e8e8e8;
  34. }
  35. .screen-videos{
  36. margin:0;
  37. padding:0;
  38. }
  39. .screen-videos li{
  40. list-style-type: none;
  41. background-color: #ffffff;
  42. padding:15px;
  43. margin-bottom: 5px;
  44. }
  45. .screen-videos li input{
  46. border:0;
  47. border-bottom: 2px solid #cbd8e4;
  48. }
  49. .sound-button[data-mode="inactive"],.mouse-button[data-mode="inactive"]{
  50. opacity:0.5;
  51. }
  52. .screen-videos .label{
  53. width:350px;
  54. }
  55. .screen-videos .expireDate{
  56. width:110px;
  57. }
  58. .screen-videos .expireHour{
  59. width:70px;
  60. }
  61. .screenshare-progress{
  62. position: absolute;
  63. bottom: 0px;
  64. left: 0;
  65. width: 100%;
  66. padding: 15px;
  67. background-color: #ffffff;
  68. text-align: center;
  69. color: #222!important;
  70. z-index: 1000;
  71. }
  72. .screenshare-progress .progress{
  73. width: 200px;
  74. display: inline-block;
  75. vertical-align: middle;
  76. margin-right: 10px;
  77. }
  78. #screenshare-progress .progress .progress-bar{
  79. height: 100%;
  80. width: 0%;
  81. transition: width 0.2s ease-in-out;
  82. }