/*******************************************************************************
   Copyright (c) 2008 Autodesk, Inc.  All rights reserved.

   These coded instructions, statements, and computer programs contain
   unpublished proprietary information written by Autodesk, Inc. and are
   protected by Federal copyright law. They may not be disclosed to third
   parties or copied or duplicated in any form, in whole or in part, without
   the prior written consent of Autodesk, Inc.
*******************************************************************************/

* {
   font-family: "Arial";
}

/***** Dialog *****/

QDialog {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
}

/***** Label *****/

QLabel {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
}

/***** Text Edit *****/

QTextEdit {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
   border-radius: 5px;
   padding: 5px 5px;
}

/***** Line Edit *****/

QLineEdit {
   color: rgb( 190, 190, 190 );
   border: 1px solid rgb( 60, 60, 60 );
   border-radius: 3px;
   background-color: rgb( 90, 99, 105 );
   selection-color: rgb( 0, 0, 0 );
   selection-background-color: rgb( 190, 190, 190 );
   padding: 0px 3px;
}

QLineEdit:focus {
   border: solid;
   border-width:2;
   border-color: rgb( 105, 130, 238 );
   border-radius: 4px;
   background-color: rgb( 113, 123, 130 );
}

QLineEdit:!enabled {
   color: rgb( 160, 160, 160 );
   border: 1px solid rgb( 120, 120, 120 );
   border-radius: 3px;
   background-color: rgb( 60, 60, 60 );
}


/***** Push Button *****/

QPushButton {
   background-color: qlineargradient( 
      x1: 0.5, y1: 0, x2: 0.5, y2: 1, 
      stop: 0   #555555,
      stop: 0.25 #414141, 
      stop: 0.75 #414141,
      stop: 1   #313131
   );
   color: rgb( 190, 190, 190 );
}

QPushButton:pressed {
   border: 1px solid #000000;
   border-width: 1px;
   border-radius: 4px;
   background-color: qlineargradient( 
      x1: 0.5, y1: 0, x2: 0.5, y2: 1, 
      stop: 0 #494949, 
      stop: 0.25 #646464, 
      stop: 0.76 #646464, 
      stop: 1 #313131
   );
}

QPushButton:focus {
   border: 2px solid rgb( 105, 130, 238 );
   border-radius: 4px;
}

QPushButton:disabled {
   border: solid;
   border-width: 1;
   border-color: black;
   background-color: rgb( 40, 40, 40 );
} 

/***** Radio Button *****/

QRadioButton {
   color: rgb( 120, 120, 120 );
   background-color: rgb( 80, 80, 80 );
}

QRadioButton:checked {
   color: rgb( 200, 200, 200 );
   background-color: rgb( 80, 80, 80 );
}

QRadioButton:focus {
   border: 2px solid rgb( 105, 130, 238 );
   border-radius: 4px;
}

/***** Combo Box *****/

QComboBox {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 61, 73, 96 );
}

QComboBox:!enabled {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 61, 73, 96 );
}
 
QComboBox:focus {
   border: 2px solid rgb( 105, 130, 238 );
   border-radius: 4px;
}

QComboBox QAbstractItemView {
   color: rgb( 20, 20, 20 );
   border: 1px solid rgb( 190, 190, 190 );
   selection-background-color: rgb( 120, 120, 120 );
   selection-color: rgb( 218, 198, 0 );
}

/***** Check Box *****/

QCheckBox {
   color: rgb( 80, 80, 80 );
   background-color: rgb( 200, 200, 200 );
}

/***** Group Box *****/

QGroupBox {
  border: 1px solid rgb( 150, 150, 150 );
  border-radius: 5px;
}

/***** Menu *****/

QMenu {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
   border: 1px solid rgb( 60, 60, 60 );
}

QMenu::item:!enabled {
   color: rgb( 120, 120, 120 );
   background-color: rgb( 80, 80, 80 );
   padding-left: 26px;
}

/***** Item Views *****/

QAbstractScrollArea {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
   border: 1px solid rgb( 190, 190, 190 );
}

QAbstractItemView {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
   border: 1px solid rgb( 150, 150, 150 );
}

QListView {
   color: rgb( 190, 190, 190 );
   background-color: rgb( 80, 80, 80 );
   selection-color: rgb( 218, 198, 0 );
   selection-background-color: rgb( 80, 80, 80 );
}

