Overview
Comment:Augmenter max-height car les sélecteurs à choix multiple peuvent être plus longs que 1000px
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 638984bc158849c9210f60f7fbae81241a160503
User & Date: bohwaz on 2017-08-04 07:01:00
Other Links: branch diff | manifest | tags
Context
2017-08-08
00:01
Correction envoi mails en masse, patch fourni par @nebuchadnezzar check-in: 82dfe8b481 user: bohwaz tags: dev
2017-08-04
07:01
Augmenter max-height car les sélecteurs à choix multiple peuvent être plus longs que 1000px check-in: 638984bc15 user: bohwaz tags: dev
07:00
Possibilité de définir une version max de Garradin dans le plugin, pour garantir que ça va pas casser avec la version suivante check-in: aac041c343 user: bohwaz tags: dev
Changes

Modified src/www/admin/static/admin.css from [c43255362e] to [4fd9786c21].

956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
}

#orderFields fieldset {
    position: relative;
    min-height: 2em;
    transition: all 1s;
    overflow: hidden;
    max-height: 1000px;
}

#orderFields fieldset legend {
    font-size: 1.2em;
    line-height: .8em;
    color: #666;
}







|







956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
}

#orderFields fieldset {
    position: relative;
    min-height: 2em;
    transition: all 1s;
    overflow: hidden;
    max-height: 5000px;
}

#orderFields fieldset legend {
    font-size: 1.2em;
    line-height: .8em;
    color: #666;
}
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
}

#orderFields fieldset dl {
    overflow: hidden;
    transition: all .5s;
    opacity: 1;
    display: block;
    max-height: 1000px;
}

#orderFields fieldset dl.hidden {
    opacity: 0;
    max-height: 0;
}








|







981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
}

#orderFields fieldset dl {
    overflow: hidden;
    transition: all .5s;
    opacity: 1;
    display: block;
    max-height: 5000px;
}

#orderFields fieldset dl.hidden {
    opacity: 0;
    max-height: 0;
}