Refactor initialization flow to accommodate future scalability and integration with all designated areas. Refactor the Creator Builders class. Refactor the FieldString and FieldXML classes.
24 lines
597 B
CSS
24 lines
597 B
CSS
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 30th April, 2015
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
/* CSS Document */
|
|
|
|
html.dark .no-select,
|
|
html.dark .no-select td {
|
|
color: #515151;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
html.light .no-select,
|
|
html.light .no-select td {
|
|
color: #999;
|
|
cursor: not-allowed;
|
|
}
|