Advertisement
yskang

threejs-viewer-16

May 6th, 2020
1,765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. #viewer .property-panel {
  2.   background-color: #ccc;
  3.   left: 20px;
  4.   opacity: 0.85;
  5.   position: absolute;
  6.   top: 35px;
  7.   width: 250px;
  8.   height: 300px;
  9.   z-index: 10;
  10. }
  11.  
  12. #viewer .property-panel-titlebar {
  13.   width: 250px;
  14.   height: 40px;
  15.   background-color: black;
  16. }
  17.  
  18. .property-panel-titlebar div {
  19.   color: white;
  20.   font-size: 10pt;
  21.   margin: 0 auto;
  22.   overflow-x: scroll;
  23.  }
  24.  
  25.  .property-panel-titlebar p {
  26.   text-overflow: ellipsis;
  27.  
  28.   /* Required for text-overflow to do anything */
  29.   white-space: nowrap;
  30.   overflow: hidden;
  31.  }
  32.  
  33. #viewer .property-panel-scroll-container {
  34.   overflow-y: scroll;
  35.   font-size: 10pt;
  36.   position: absolute;
  37.   top: 40px;
  38.   bottom: 0;
  39.   left: 0;
  40.   right: 0;
  41. }
  42.  
  43. #viewer .property-panel-content-table {
  44.   width: 100%;
  45.   height: 100%;
  46.   border-collapse: collapse;
  47. }
  48.  
  49. .property-panel-content-table, .property-panel-content-table th, .property-panel-content-table td {
  50.   border: 1px solid black;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement