Annotation of modules/damieng/graphical_editor/loncapa_daxe/web/loncapa_daxe.css, revision 1.1

1.1     ! damieng     1: span.empty_tag, span.start_tag, span.end_tag, span.simple_type {
        !             2:   background-color: #F6F6F6;
        !             3:   border: 1px solid #808080;
        !             4: }
        !             5: 
        !             6: .lcdblock {
        !             7:   border-top: 1px solid #AAA;
        !             8:   border-left: 1px solid #AAA;
        !             9:   border-bottom: 1px solid #AAA;
        !            10:   box-shadow: 0px 1px 1px #BBB;
        !            11:   margin-top: 8px;
        !            12:   margin-bottom: 8px;
        !            13:   border-top-left-radius: 0.4em;
        !            14:   border-top-right-radius: 0.4em;
        !            15:   border-bottom-left-radius: 0.4em;
        !            16: }
        !            17: 
        !            18: .lcdblock.invalid {
        !            19:   border-top: 1px solid #F00;
        !            20:   border-left: 1px solid #F00;
        !            21:   border-bottom: 1px solid #F00;
        !            22: }
        !            23: 
        !            24: .selected .lcdblock-header {
        !            25:   background-color: #50A0FF;
        !            26: }
        !            27: 
        !            28: .lcdblock-header {
        !            29:   background-color: #F5F5F5;
        !            30:   padding: 2px;
        !            31:   border-top-left-radius: 0.4em;
        !            32:   border-top-right-radius: 0.4em;
        !            33:   box-shadow: 0px 1px 2px #AAA;
        !            34:   cursor: default;
        !            35:   font-family: sans-serif;
        !            36:   font-weight: normal;
        !            37:   font-style: normal;
        !            38:   font-size: medium;
        !            39:   color: black;
        !            40:   text-align: left;
        !            41: }
        !            42: 
        !            43: .lcdblock-header:after {
        !            44:   /* clearfix for floating buttons */
        !            45:   /* we can't use overflow:auto because of the parameter template menu which needs to overflow */
        !            46:   visibility: hidden;
        !            47:   display: block;
        !            48:   content: "";
        !            49:   clear: both;
        !            50:   height: 0;
        !            51: }
        !            52: 
        !            53: .lcdblock-header.without-content-afterwards {
        !            54:   border-bottom-left-radius: 0.4em;
        !            55: }
        !            56: 
        !            57: .lcdblock.invalid>.lcdblock-header {
        !            58:   background-color: #FFE0B0;
        !            59: }
        !            60: 
        !            61: .lcdblock.invalid.selected>.lcdblock-header {
        !            62:   background-color: #50A0FF;
        !            63: }
        !            64: 
        !            65: .selected .lcdblock.invalid>.lcdblock-header {
        !            66:   background-color: #50A0FF;
        !            67: }
        !            68: 
        !            69: .lcdblock-title {
        !            70:   margin-left: 4px;
        !            71:   margin-right: 3px;
        !            72:   font-style: italic;
        !            73: }
        !            74: 
        !            75: .lcdblock-attributes {
        !            76:   font-size: 90%;
        !            77: }
        !            78: 
        !            79: .lcdblock-content {
        !            80:   margin-top: 3px;
        !            81: }
        !            82: 
        !            83: .lcd-button-box {
        !            84:   display: inline-block;
        !            85:   line-height: 20px;
        !            86:   border: 1px solid #AAA;
        !            87:   margin: 0.2em;
        !            88:   background: #FAFAFA;
        !            89:   border-radius: 5px;
        !            90:   overflow: hidden;
        !            91:   cursor: default;
        !            92: }
        !            93: 
        !            94: .lcdbutton {
        !            95:   display: inline-block;
        !            96:   line-height: 18px;
        !            97:   padding: 3px;
        !            98:   cursor: default;
        !            99: }
        !           100: 
        !           101: .lcdbutton-disabled {
        !           102:   opacity: 0.3;
        !           103: }
        !           104: 
        !           105: .lcdbutton-selected {
        !           106:   background-color: #DDD;
        !           107: }
        !           108: 
        !           109: .lcdbutton:hover {
        !           110:   background-color: #EEE;
        !           111: }
        !           112: 
        !           113: .lcdbutton-disabled:hover {
        !           114:   background-color: transparent;
        !           115: }
        !           116: 
        !           117: .lcdbutton-disabled:hover {
        !           118:   background-color: transparent;
        !           119: }
        !           120: 
        !           121: .lcdbutton img {
        !           122:   vertical-align: middle;
        !           123: }
        !           124: 
        !           125: .lcdblock .lcd-button-box {
        !           126:   float: right;
        !           127: }
        !           128: 
        !           129: .lcdblock .lcd-advanced {
        !           130:   float: right;
        !           131: }
        !           132: 
        !           133: .tex {
        !           134:   cursor: default;
        !           135: }
        !           136: 
        !           137: .hr {
        !           138:   cursor: default;
        !           139:   margin: 0px;
        !           140:   padding-top: 0.5em;
        !           141:   padding-bottom: 0.5em;
        !           142: }
        !           143: 
        !           144: input.math {
        !           145:   font-family: monospace;
        !           146: }
        !           147: 
        !           148: .perl-text {
        !           149:   visibility: hidden;
        !           150: }
        !           151: 
        !           152: .perl-text .selection {
        !           153:   visibility: visible;
        !           154: }
        !           155: 
        !           156: .selected .perl-text {
        !           157:   visibility: visible;
        !           158: }
        !           159: 
        !           160: .perl-colored {
        !           161:   z-index: -1;
        !           162:   visibility: visible;
        !           163:   font-family: monospace;
        !           164: }
        !           165: 
        !           166: .perl-colored .keyword {
        !           167:   font-weight: bold;
        !           168: }
        !           169: .perl-colored .string {
        !           170:   color: #050;
        !           171: }
        !           172: .perl-colored .comment {
        !           173:   color: #666;
        !           174: }
        !           175: .perl-colored .variable {
        !           176:   color: #049;
        !           177: }
        !           178: .perl-colored .number {
        !           179:   color: #640;
        !           180: }
        !           181: .perl-colored .function-call {
        !           182:   color: #705;
        !           183: }
        !           184: 
        !           185: .radio-foilgroup {
        !           186:   white-space: normal; /* to prevent a bug with draggable in Firefox */
        !           187:   margin-bottom: 1em;
        !           188: }
        !           189: 
        !           190: .radio-foilgroup>table {
        !           191:   padding-left: 1em;
        !           192:   padding-right: 1em;
        !           193: }
        !           194: 
        !           195: .radio-foilgroup>table>tr>td:first-child {
        !           196:   vertical-align: middle;
        !           197: }
        !           198: 
        !           199: .radio-foilgroup>table>tr>td:nth-child(2) {
        !           200:   min-width: 5em;
        !           201: }
        !           202: 
        !           203: .radio-foilgroup>table>tr>td {
        !           204:   position: relative; /* bug workaround for Chromium (without this the tr drag&drop ghost is not visible) */
        !           205: }
        !           206: 
        !           207: .radio-foilgroup>table>tr:hover .delete-icon {
        !           208:   visibility: visible;
        !           209: }
        !           210: 
        !           211: .radio-foilgroup>table>tr>td {
        !           212:   border-top: 1px solid #FFF;
        !           213:   border-bottom: 1px solid #FFF;
        !           214: }
        !           215: 
        !           216: .radio-foilgroup>table>tr.dragbefore>td {
        !           217:   border-top: 1px dashed #000;
        !           218: }
        !           219: 
        !           220: .radio-foilgroup>table>tr.dragafter>td {
        !           221:   border-bottom: 1px dashed #000;
        !           222: }
        !           223: 
        !           224: .grip-icon {
        !           225:   vertical-align: middle;
        !           226:   padding-right: 6px;
        !           227:   padding-left: 4px;
        !           228:   cursor: move;
        !           229: }
        !           230: 
        !           231: .optionresponse-options {
        !           232:   margin-bottom: 1em;
        !           233: }
        !           234: 
        !           235: .option-list {
        !           236:   list-style: none;
        !           237:   margin-top: 0.5em;
        !           238:   margin-bottom: 0.5em;
        !           239:   white-space: normal; /* to prevent a bug with draggable in Firefox */
        !           240:   cursor: default;
        !           241: }
        !           242: 
        !           243: .option-list {
        !           244:   margin-left: 0;
        !           245:   padding-left: 1em;
        !           246: }
        !           247: 
        !           248: .option-list>li {
        !           249:   border-top: 1px solid #FFF;
        !           250:   border-bottom: 1px solid #FFF;
        !           251: }
        !           252: 
        !           253: .option-list>li.dragbefore {
        !           254:   border-top: 1px dashed #000;
        !           255: }
        !           256: 
        !           257: .option-list>li.dragafter {
        !           258:   border-bottom: 1px dashed #000;
        !           259: }
        !           260: 
        !           261: .delete-icon {
        !           262:   visibility: hidden;
        !           263:   cursor: default;
        !           264: }
        !           265: 
        !           266: .option-list>li:hover .delete-icon {
        !           267:   visibility: visible;
        !           268: }
        !           269: 
        !           270: .optionresponse-foilgroup {
        !           271:   margin-bottom: 1em;
        !           272:   white-space: normal;
        !           273: }
        !           274: 
        !           275: .optionresponse-foilgroup>table {
        !           276:   padding-left: 1em;
        !           277: }
        !           278: 
        !           279: .optionresponse-foilgroup>table>tr>td:first-child {
        !           280:   vertical-align: middle;
        !           281: }
        !           282: 
        !           283: .optionresponse-foilgroup>table>tr>td:nth-child(2) {
        !           284:   min-width: 5em;
        !           285: }
        !           286: 
        !           287: .optionresponse-foilgroup>table>tr>td {
        !           288:   position: relative; /* bug workaround for Chromium (without this the tr drag&drop ghost is not visible) */
        !           289: }
        !           290: 
        !           291: .optionresponse-foilgroup>table>tr:hover .delete-icon {
        !           292:   visibility: visible;
        !           293: }
        !           294: 
        !           295: .optionresponse-foilgroup>table>tr>td {
        !           296:   border-top: 1px solid #FFF;
        !           297:   border-bottom: 1px solid #FFF;
        !           298: }
        !           299: 
        !           300: .optionresponse-foilgroup>table>tr.dragbefore>td {
        !           301:   border-top: 1px dashed #000;
        !           302: }
        !           303: 
        !           304: .optionresponse-foilgroup>table>tr.dragafter>td {
        !           305:   border-bottom: 1px dashed #000;
        !           306: }
        !           307: 
        !           308: .rank-foilgroup {
        !           309:   white-space: normal; /* to prevent a bug with draggable in Firefox */
        !           310:   margin-bottom: 1em;
        !           311: }
        !           312: 
        !           313: .rank-foilgroup>table {
        !           314:   padding-left: 1em;
        !           315:   padding-right: 1em;
        !           316: }
        !           317: 
        !           318: .rank-foilgroup>table>tr>td:first-child {
        !           319:   vertical-align: middle;
        !           320: }
        !           321: 
        !           322: .rank-foilgroup>table>tr>td:nth-child(2) {
        !           323:   min-width: 5em;
        !           324: }
        !           325: 
        !           326: .rank-foilgroup>table>tr>td {
        !           327:   position: relative; /* bug workaround for Chromium (without this the tr drag&drop ghost is not visible) */
        !           328: }
        !           329: 
        !           330: .rank-foilgroup>table>tr:hover .delete-icon {
        !           331:   visibility: visible;
        !           332: }
        !           333: 
        !           334: .rank-foilgroup>table>tr>td {
        !           335:   border-top: 1px solid #FFF;
        !           336:   border-bottom: 1px solid #FFF;
        !           337: }
        !           338: 
        !           339: .rank-foilgroup>table>tr.dragbefore>td {
        !           340:   border-top: 1px dashed #000;
        !           341: }
        !           342: 
        !           343: .rank-foilgroup>table>tr.dragafter>td {
        !           344:   border-bottom: 1px dashed #000;
        !           345: }
        !           346: 
        !           347: .rank-number {
        !           348:   border: 1px solid #555;
        !           349:   padding: 1px;
        !           350:   margin: 1px;
        !           351: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>