CKAN资源表单html“描述”字段,如何/在何处将其他字段更改为与描述相同的大小?

时间:2019-09-30 14:34:38

标签: html css ckan

我对CKAN和任何类型的前端都是新手。我一直在搜索多个html / css文件,但找不到在哪里可以更改资源表单中字段的大小。 (用户可以在其中从GUI更改元数据)

我想将一个额外的字段更改为与说明字段相同的大小。有谁熟悉CKAN并且知道我可以在其中执行的文件名吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

资源字段位于ckan/templates/package/snippets/resource_form.html中的文件名。 您可以在此处添加自己的html标记,也可以使用macros之一。 例如

Sub Conditional_formatting_2_conditions_met()

    Dim lRow    As Long
    Dim cel     As Range

    With Sheets("RAW DATA FILE")
        .Columns("A:A").EntireColumn.AutoFit
        With .Range("P1:P10")
            For Each cel In .Cells
                With cel
                    lRow = lRow + 1
                    With .FormatConditions.Add(Type:=xlExpression, Formula1:="=AND(ISNUMBER($P" & CStr(lRow) & "), $P" & CStr(lRow) & ">0, $O" & CStr(lRow) & ">0)")
                        .SetFirstPriority
                        .StopIfTrue = False
                        With .Interior
                            .PatternColorIndex = xlAutomatic
                            .Color = 49407
                            .TintAndShade = 0
                        End With
                    End With
                End With
            Next cel
        End With
    End With
End Sub

内部类标签中,您可以添加要应用于对照组的类数组。