about summary refs log tree commit diff stats
path: root/tinybasic/dice.bas
Commit message (Expand)AuthorAgeFilesLines
* *elioat2022-10-191-0/+10
='#n1'>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
/**
 * This file provides styles for modal dialogues.
 */

.dokuwiki .ui-widget {
    font-size: 100%;
}


/* link wizard (opens from the link button in the edit toolbar)
********************************************************************/

#link__wiz {
}

[dir=rtl] #link__wiz_close {
    float: left;
}

#link__wiz_result {
    background-color: @ini_background;
    width:  293px;
    height: 193px;
    overflow: auto;
    border: 1px solid @ini_border;
    margin: 3px auto;
    text-align: left;
    line-height: 1;
}
[dir=rtl] #link__wiz_result {
    text-align: right;
}

#link__wiz_result div {
    padding: 3px 3px 3px 0;
}

#link__wiz_result div a {
    display: block;
    padding-left: 22px;
    min-height: 16px;
    background: transparent 3px center no-repeat;
}
[dir=rtl] #link__wiz_result div a {
    padding: 3px 22px 3px 3px;
    background-position: 257px 3px;
}

#link__wiz_result div.type_u a {
    background-image: url(../../images/up.png);
}
#link__wiz_result div.type_f a {
    background-image: url(../../images/page.png);
}
#link__wiz_result div.type_d a {
    background-image: url(../../images/ns.png);
}

#link__wiz_result div.even {
    background-color: @ini_background_neu;
}

#link__wiz_result div.selected {
    background-color: @ini_background_alt;
}

#link__wiz_result span {
    display: block;
    color: @ini_text_neu;
    margin-left: 22px;
}


/* media option wizard (opens when inserting media in the media popup)
********************************************************************/

#media__popup {
    /* for backwards compatibility (not needed since Rincewind) */
    display: none;
}

#media__popup_content p {
    margin: 0 0 .5em;
}

#media__popup_content label {
    margin-right: .5em;
    cursor: default;
}

#media__popup_content button {
    margin-right: 1px;
    cursor: pointer;
}