@charset "UTF-8";
.rr-outline-root {
  font-family: Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", AppleSDGothicNeo-Light, sans-serif;
  font-size: 13px;
  color: #000000;
  background: #FFFFFF;
  -webkit-appearance: none;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: none;
  -ms-touch-action: none; 
}   

.rr-outline-body {
    background: #282828;
}

.rr-outline-row {
    display: flex;
    align-items: center;
    background: transparent;
    line-height: 1.5em;
    padding-top: 1px;
    padding-bottom: 1px;
    color: white;
    white-space: nowrap;
    width: 100%;
}

.rr-outline-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.rr-outline-row-focus, .rr-outline-row-focus:hover {
    background: rgba(0, 127, 255, 0.4);
}

.rr-outline-row-select, .rr-outline-row-focus:hover {
    background: rgba(0, 127, 255, 0.3);
}

.rr-outline-expander {
    flex: 0 0 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 2px;
}
  
.rr-outline-label {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: none;
}

/* 
    아래 처럼 행별 아이콘 적용할 것!
.rr-outline-row[data-type] .rr-outline-label::before {
    background-size: 13px;
    width: 13px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px 0 0;
    content: "";
}
.rr-outline-row[data-type='text'] .rr-outline-label::before {
    background-image: url(/assets/images/outline/text-item.png);
}
.rr-outline-row[data-type='image'] .rr-outline-label::before {
    background-image: url(/assets/images/outline/image-item.png);
}
...
*/
