vs-panel.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .turnAnim{
  2. animation:turn 2s linear infinite;
  3. }
  4. @keyframes turn{
  5. 0%{-webkit-transform:rotate(0deg);}
  6. 25%{-webkit-transform:rotate(90deg);}
  7. 50%{-webkit-transform:rotate(180deg);}
  8. 75%{-webkit-transform:rotate(270deg);}
  9. 100%{-webkit-transform:rotate(360deg);}
  10. }
  11. .dropBg{
  12. width: 100%;
  13. height: 100%;
  14. position: absolute;
  15. background-color: rgba(255, 255, 255, 0.062);
  16. pointer-events: none;
  17. display:none;
  18. }
  19. #manualCompile{height: 15px;width:40;}
  20. #gotoFileBtn{height: 15px;width:40;}
  21. #settingBtn {height: 15px;width:40;}
  22. #resetBtn {height: 15px;width:40;}
  23. #editorA {width: 0%;height: 0%;}
  24. #editorB {overflow:hidden;flex: 1 1 auto;}
  25. #title {line-height: 15px;}
  26. #tabList {overflow: hidden;-webkit-transition:all 0.1s;}
  27. #layoutTab {-webkit-transition:all 0.1s;}
  28. #box {
  29. display: flex;
  30. flex-direction: column-reverse;
  31. width: 100%;
  32. height: 100%;
  33. }
  34. #waitIco {
  35. width: 15px;
  36. height: 15px;
  37. }
  38. .openTab {
  39. border-style: inset;
  40. padding: 0px 1px 0px 1px;
  41. border-width: 0px 1px 0px 0px;
  42. background-color : rgb(212, 212, 212);
  43. color:#1e1e1e;
  44. float:left;
  45. display:block;
  46. user-select:none;
  47. text-align:center;
  48. -webkit-transition:all 0.1s;
  49. }
  50. .closeTab {
  51. border-style: outset;
  52. padding: 0px 3px 0px 3px;
  53. border-width: .0px 1px .0px 0px;
  54. text-align:center ;
  55. float:left;
  56. user-select:none;
  57. cursor:pointer;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. -webkit-transition:all 0.1s;
  61. }
  62. .closeBtn {
  63. color:#FF0000;
  64. display:inline;
  65. cursor:crosshair;
  66. flex: 1;
  67. }
  68. .tabTitle {
  69. display:inline;
  70. word-break:keep-all; /* 不换行 */
  71. white-space:nowrap; /* 不换行 */
  72. overflow:hidden; /* 内容超出宽度时隐藏超出部分的内容 */
  73. text-overflow:ellipsis; /* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用。*/
  74. text-align:center;
  75. -webkit-transition:all 0.1s;
  76. }
  77. .overlay {
  78. width: 9999px;
  79. height: 9999px;
  80. position: absolute;
  81. top: 0px;
  82. left: 0px;
  83. z-index: 10001;
  84. display:none;
  85. filter:alpha(opacity=10);
  86. background-color: #777;
  87. opacity: 0.1;
  88. -moz-opacity: 0.1;
  89. }
  90. .titleBarFontSize{
  91. font-size: 12px;
  92. }